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.

45 lines
1.5 KiB

  1. fix install paths.
  2. --- ./Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
  3. +++ ./Makefile.in 2004-09-08 01:47:35.242452816 +0200
  4. @@ -10,8 +10,8 @@
  5. #
  6. prefix = @prefix@
  7. -#bindir = $(prefix)/bin
  8. -bindir = @prefix@@bindir@
  9. +bindir = $(prefix)/bin
  10. +#bindir = @prefix@@bindir@
  11. SHELL = @SHELL@
  12. # this does not work on SuSE 6.0, why? (autoconf 2.12 do not set @SHELL@ ?)
  13. --- ./src/Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
  14. +++ ./src/Makefile.in 2004-09-08 01:52:25.391343480 +0200
  15. @@ -67,10 +67,10 @@
  16. # PHONY = don't look at file clean, -rm = start rm and ignore errors
  17. .PHONY : clean proper install
  18. install: all
  19. - $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
  20. - $(INSTALL) ../bin/$(PROGRAM) $(DESTDIR)$(bindir)
  21. - $(INSTALL) $(LIBPGMASCLIB) $(DESTDIR)$(libdir)
  22. - $(INSTALL) $(INCLUDEFILES) $(DESTDIR)$(includedir)
  23. + $(INSTALL) -d $(bindir) $(libdir) $(includedir)
  24. + $(INSTALL) ../bin/$(PROGRAM) $(bindir)
  25. + $(INSTALL) $(LIBPGMASCLIB) $(libdir)
  26. + $(INSTALL) $(INCLUDEFILES) $(includedir)
  27. clean:
  28. -rm -f *.o *~
  29. --- ./man/Makefile.in~ 2004-02-13 10:49:08.000000000 +0100
  30. +++ ./man/Makefile.in 2004-09-08 01:53:54.624777936 +0200
  31. @@ -16,8 +16,8 @@
  32. # PHONY = don't look at file clean, -rm = start rm and ignore errors
  33. .PHONY : clean proper install
  34. install: all
  35. - $(INSTALL) -d $(DESTDIR)$(mandir)/man1
  36. - $(INSTALL) ../man/man1/$(PROGRAM).1 $(DESTDIR)$(mandir)/man1
  37. + $(INSTALL) -d $(mandir)/man1
  38. + $(INSTALL) ../man/man1/$(PROGRAM).1 $(mandir)/man1
  39. clean:
  40. -rm -f *.o *~