diff options
author | agc <agc@pkgsrc.org> | 2008-05-09 10:47:29 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2008-05-09 10:47:29 +0000 |
commit | 232c97cb672375219b611caf91d509b55de45ae3 (patch) | |
tree | 950a2827d8b47f6c29af8459951a8b4d916e60c7 /editors | |
parent | 1f15175194d53d0fa8173dd9599250225e9a2dd1 (diff) | |
download | pkgsrc-232c97cb672375219b611caf91d509b55de45ae3.tar.gz |
Minor fix to allow this package to build on case-insensitive file systems
Diffstat (limited to 'editors')
-rw-r--r-- | editors/ssam/distinfo | 4 | ||||
-rw-r--r-- | editors/ssam/patches/patch-aa | 11 |
2 files changed, 10 insertions, 5 deletions
diff --git a/editors/ssam/distinfo b/editors/ssam/distinfo index 5229b4f6fa1..994b90f66d2 100644 --- a/editors/ssam/distinfo +++ b/editors/ssam/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.6 2007/08/17 23:10:19 agc Exp $ +$NetBSD: distinfo,v 1.7 2008/05/09 10:47:29 agc Exp $ SHA1 (ssam-1.9.tar.gz) = 6fee1e64d3cbf6bef72fe60798cc8ad7eab9260e RMD160 (ssam-1.9.tar.gz) = 378f838fad503693caec5ec3e699d08fc3b7e9eb Size (ssam-1.9.tar.gz) = 41186 bytes -SHA1 (patch-aa) = 3760ac907bd59ae5736cc3c6fceae02164582f00 +SHA1 (patch-aa) = 117faef49e067bde9dcae8abb769946c86ff9c4f SHA1 (patch-ab) = 7ea16aa146e9a68d1b921a56fb80dc968df140f3 SHA1 (patch-ac) = 14536f279e719d9a43e4c9ca1f9367d8909e39bf 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) |