diff options
Diffstat (limited to 'net/nmap/patches/patch-aa')
-rw-r--r-- | net/nmap/patches/patch-aa | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net/nmap/patches/patch-aa b/net/nmap/patches/patch-aa new file mode 100644 index 00000000000..533b3df599a --- /dev/null +++ b/net/nmap/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1 1999/04/04 16:36:40 hubertf Exp $ + +Lame 1.3.3 install(1) doesn't understand -c and -d at the same time. +Fix this (see PR 7318). + +--- Makefile.in.orig Wed Mar 31 11:07:26 1999 ++++ Makefile.in Sun Apr 4 18:17:55 1999 +@@ -111,10 +111,10 @@ + $(INSTALL) -d $(mandir) + $(INSTALL) -d $(mandir)/man1 + $(INSTALL) -d $(libdir) +- $(INSTALL) -m 755 $(TARGET) $(bindir)/$(TARGET) +- $(INSTALL) -m 644 docs/$(TARGET).1 $(mandir)/man1/$(TARGET).1 +- $(INSTALL) -m 644 nmap-os-fingerprints $(libdir)/nmap-os-fingerprints +- $(INSTALL) -m 644 nmap-services $(libdir)/nmap-services ++ $(INSTALL) -c -m 755 $(TARGET) $(bindir)/$(TARGET) ++ $(INSTALL) -c -m 644 docs/$(TARGET).1 $(mandir)/man1/$(TARGET).1 ++ $(INSTALL) -c -m 644 nmap-os-fingerprints $(libdir)/nmap-os-fingerprints ++ $(INSTALL) -c -m 644 nmap-services $(libdir)/nmap-services + + uninstall: + rm -f $(bindir)/$(TARGET) |