mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/rene/gocr/pathnames.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. fix install paths.
  20. --- ./Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
  21. +++ ./Makefile.in 2004-09-08 01:47:35.242452816 +0200
  22. @@ -10,8 +10,8 @@
  23. #
  24. prefix = @prefix@
  25. -#bindir = $(prefix)/bin
  26. -bindir = @prefix@@bindir@
  27. +bindir = $(prefix)/bin
  28. +#bindir = @prefix@@bindir@
  29. SHELL = @SHELL@
  30. # this does not work on SuSE 6.0, why? (autoconf 2.12 do not set @SHELL@ ?)
  31. --- ./src/Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
  32. +++ ./src/Makefile.in 2004-09-08 01:52:25.391343480 +0200
  33. @@ -67,10 +67,10 @@
  34. # PHONY = don't look at file clean, -rm = start rm and ignore errors
  35. .PHONY : clean proper install
  36. install: all
  37. - $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
  38. - $(INSTALL) ../bin/$(PROGRAM) $(DESTDIR)$(bindir)
  39. - $(INSTALL) $(LIBPGMASCLIB) $(DESTDIR)$(libdir)
  40. - $(INSTALL) $(INCLUDEFILES) $(DESTDIR)$(includedir)
  41. + $(INSTALL) -d $(bindir) $(libdir) $(includedir)
  42. + $(INSTALL) ../bin/$(PROGRAM) $(bindir)
  43. + $(INSTALL) $(LIBPGMASCLIB) $(libdir)
  44. + $(INSTALL) $(INCLUDEFILES) $(includedir)
  45. clean:
  46. -rm -f *.o *~
  47. --- ./man/Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
  48. +++ ./man/Makefile.in 2004-09-08 01:53:54.624777936 +0200
  49. @@ -16,8 +16,8 @@
  50. # PHONY = don't look at file clean, -rm = start rm and ignore errors
  51. .PHONY : clean proper install
  52. install: all
  53. - $(INSTALL) -d $(DESTDIR)$(mandir)/man1
  54. - $(INSTALL) ../man/man1/$(PROGRAM).1 $(DESTDIR)$(mandir)/man1
  55. + $(INSTALL) -d $(mandir)/man1
  56. + $(INSTALL) ../man/man1/$(PROGRAM).1 $(mandir)/man1
  57. clean:
  58. -rm -f *.o *~