]> git.pld-linux.org Git - packages/gocr.git/blame - gocr-DESTDIR.patch
- new package
[packages/gocr.git] / gocr-DESTDIR.patch
CommitLineData
8f2e67e3
JB
1--- gocr-0.3.2/src/Makefile.in.orig Thu May 24 15:05:31 2001
2+++ gocr-0.3.2/src/Makefile.in Wed Jul 4 01:42:05 2001
3@@ -61,9 +61,10 @@
4 # PHONY = don't look at file clean, -rm = start rm and ignore errors
5 .PHONY : clean proper install
6 install: all
7- $(INSTALL) ../bin/$(PROGRAM) $(bindir)
8- $(INSTALL) $(LIBPGMASCLIB) $(libdir)
9- $(INSTALL) $(INCLUDEFILES) $(includedir)
10+ $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
11+ $(INSTALL) ../bin/$(PROGRAM) $(DESTDIR)$(bindir)
12+ $(INSTALL) $(LIBPGMASCLIB) $(DESTDIR)$(libdir)
13+ $(INSTALL) $(INCLUDEFILES) $(DESTDIR)$(includedir)
14 clean:
15 -rm -f *.o *~
16
17--- gocr-0.3.2/man/Makefile.in.orig Thu May 24 15:05:31 2001
18+++ gocr-0.3.2/man/Makefile.in Wed Jul 4 01:42:59 2001
19@@ -15,7 +15,8 @@
20 # PHONY = don't look at file clean, -rm = start rm and ignore errors
21 .PHONY : clean proper install
22 install: all
23- $(INSTALL) ../man/man1/$(PROGRAM).1 $(mandir)/man1
24+ $(INSTALL) -d $(DESTDIR)$(mandir)/man1
25+ $(INSTALL) ../man/man1/$(PROGRAM).1 $(DESTDIR)$(mandir)/man1
26
27 clean:
28 -rm -f *.o *~
This page took 0.061721 seconds and 4 git commands to generate.