blob: ebdb5c6f2c0fc65b959e18ff087b22c1d27cbc57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
$NetBSD: patch-az,v 1.2 2002/11/26 21:48:21 cjep Exp $
--- ../gimp-print-4.2.0/src/ghost/Makefile.in.orig Thu Oct 24 18:17:52 2002
+++ ../gimp-print-4.2.0/src/ghost/Makefile.in Thu Oct 24 18:18:25 2002
@@ -316,22 +316,22 @@
all-local: $(ALL_LOCAL_DEPS)
$(srcdir)/gdevstp-print.h: $(top_srcdir)/include/gimp-print/gimp-print.h
- sed $(GHCODE) $< > $(srcdir)/$@
+ ${SED} $(GHCODE) $< > $(srcdir)/$@
$(srcdir)/gdevstp-print-internal.h: $(top_srcdir)/src/main/gimp-print-internal.h
- sed $(GHCODE) $< > $(srcdir)/$@
+ ${SED} $(GHCODE) $< > $(srcdir)/$@
$(srcdir)/gdevstp-print-intl-internal.h: $(top_srcdir)/include/gimp-print/gimp-print-intl-internal.h
- sed $(GHCODE) $< > $(srcdir)/$@
+ ${SED} $(GHCODE) $< > $(srcdir)/$@
gdevstp-%.h: $(srcdir)/../main/%.h Makefile
- cd $(srcdir) ; sed $(GHCODE) $< > $@
+ cd $(srcdir) ; ${SED} $(GHCODE) $< > $@
gdevstp-printers.c: ../main/print-printers.c
- sed $(GHCODE) $< > $@
+ ${SED} $(GHCODE) $< > $@
gdevstp-%: $(srcdir)/../main/print-% Makefile
- cd $(srcdir) ; sed $(GHCODE) $< > $@
+ cd $(srcdir) ; ${SED} $(GHCODE) $< > $@
../main/print-printers.c: ../printdef/printdef $(srcdir)/../main/printers.xml
../printdef/printdef < $(srcdir)/../main/printers.xml > $(top_builddir)/src/main/print-printers.c
|