|
|
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- # # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # Please add additional copyright information _after_ the line containing # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by # the ./scripts/Create-CopyPatch script. Do not edit this copyright text! # # ROCK Linux: rock-src/package/rene/gocr/pathnames.patch # ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf # # This patch file is dual-licensed. It is available under the license the # patched project is licensed under, as long as it is an OpenSource license # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms # of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # --- ROCK-COPYRIGHT-NOTE-END ---
fix install paths.
--- ./Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
+++ ./Makefile.in 2004-09-08 01:47:35.242452816 +0200
@@ -10,8 +10,8 @@
# prefix = @prefix@ -#bindir = $(prefix)/bin
-bindir = @prefix@@bindir@
+bindir = $(prefix)/bin
+#bindir = @prefix@@bindir@
SHELL = @SHELL@ # this does not work on SuSE 6.0, why? (autoconf 2.12 do not set @SHELL@ ?) --- ./src/Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
+++ ./src/Makefile.in 2004-09-08 01:52:25.391343480 +0200
@@ -67,10 +67,10 @@
# PHONY = don't look at file clean, -rm = start rm and ignore errors .PHONY : clean proper install install: all - $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
- $(INSTALL) ../bin/$(PROGRAM) $(DESTDIR)$(bindir)
- $(INSTALL) $(LIBPGMASCLIB) $(DESTDIR)$(libdir)
- $(INSTALL) $(INCLUDEFILES) $(DESTDIR)$(includedir)
+ $(INSTALL) -d $(bindir) $(libdir) $(includedir)
+ $(INSTALL) ../bin/$(PROGRAM) $(bindir)
+ $(INSTALL) $(LIBPGMASCLIB) $(libdir)
+ $(INSTALL) $(INCLUDEFILES) $(includedir)
clean: -rm -f *.o *~ --- ./man/Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
+++ ./man/Makefile.in 2004-09-08 01:53:54.624777936 +0200
@@ -16,8 +16,8 @@
# PHONY = don't look at file clean, -rm = start rm and ignore errors .PHONY : clean proper install install: all - $(INSTALL) -d $(DESTDIR)$(mandir)/man1
- $(INSTALL) ../man/man1/$(PROGRAM).1 $(DESTDIR)$(mandir)/man1
+ $(INSTALL) -d $(mandir)/man1
+ $(INSTALL) ../man/man1/$(PROGRAM).1 $(mandir)/man1
clean: -rm -f *.o *~
|