diff options
Diffstat (limited to 'editors/ssam/patches/patch-aa')
-rw-r--r-- | editors/ssam/patches/patch-aa | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/editors/ssam/patches/patch-aa b/editors/ssam/patches/patch-aa index ef037b8106b..d489486a61f 100644 --- a/editors/ssam/patches/patch-aa +++ b/editors/ssam/patches/patch-aa @@ -1,10 +1,12 @@ -$NetBSD: patch-aa,v 1.2 2007/08/17 23:10:19 agc Exp $ +$NetBSD: patch-aa,v 1.3 2008/05/09 10:47:29 agc Exp $ Use LDFLAGS when linking, just in case we're ELF. Add DESTDIR support +Make sure "install" is a phony target, so that the file INSTALL isn't + recognised as install on case-insensitive file systems --- Makefile.in.orig 1997-10-21 09:28:16.000000000 +0100 -+++ Makefile.in 2007-08-17 23:58:38.000000000 +0100 ++++ Makefile.in 2008-05-08 10:59:18.000000000 +0100 @@ -22,7 +22,7 @@ RANLIB= @RANLIB@ @@ -14,9 +16,12 @@ Add DESTDIR support tst: $(EXE) test -d tests || ln -s $(srcdir)/tests . -@@ -171,9 +171,9 @@ +@@ -170,10 +170,12 @@ + make clean rm -f config.cache config.log config.status Makefile config.h ++.PHONY: install ++ install: - $(srcdir)/mkinstalldirs $(BINDIR) $(MANDIR)/man1/ - $(INSTALL) ssam $(BINDIR) |