diff options
Diffstat (limited to 'math/pspp/files')
-rw-r--r-- | math/pspp/files/patch-aa | 11 | ||||
-rw-r--r-- | math/pspp/files/patch-ab | 20 |
2 files changed, 31 insertions, 0 deletions
diff --git a/math/pspp/files/patch-aa b/math/pspp/files/patch-aa new file mode 100644 index 000000000000..1a6aada2c681 --- /dev/null +++ b/math/pspp/files/patch-aa @@ -0,0 +1,11 @@ +--- Makefile.in.orig Sun Jan 16 19:06:30 2000 ++++ Makefile.in Sat Apr 22 15:23:56 2000 +@@ -97,7 +97,7 @@ + + SUBDIRS = doc intl po lib src config tests + +-pkgdocdir = $(prefix)/doc/@PACKAGE@ ++pkgdocdir = $(datadir)/doc/@PACKAGE@ + pkgdoc_DATA = NEWS README TODO + noinst_DATA = AUTHORS THANKS + diff --git a/math/pspp/files/patch-ab b/math/pspp/files/patch-ab new file mode 100644 index 000000000000..a9d6c40e0735 --- /dev/null +++ b/math/pspp/files/patch-ab @@ -0,0 +1,20 @@ +--- config/Makefile.in.orig Sun Jan 16 19:06:43 2000 ++++ config/Makefile.in Sat Apr 22 13:04:25 2000 +@@ -125,12 +125,15 @@ + $(mkinstalldirs) $(DESTDIR)$(pkgsysconfdir) + @list='$(pkgsysconf_DATA)'; for p in $$list; do \ + if test -f $(srcdir)/$$p; then \ +- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p"; \ +- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p; \ ++ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p.default"; \ ++ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p.default; \ + else if test -f $$p; then \ + echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgsysconfdir)/$$p"; \ + $(INSTALL_DATA) $$p $(DESTDIR)$(pkgsysconfdir)/$$p; \ + fi; fi; \ ++ if test ! -f $(DESTDIR)$(pkgsysconfdir)/$$p; then \ ++ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p; \ ++ fi; \ + done + + uninstall-pkgsysconfDATA: |