diff options
author | kim <kim@pkgsrc.org> | 1998-08-09 20:37:17 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 1998-08-09 20:37:17 +0000 |
commit | 53d63ffb5b75afadab2200882af3deda8c9fd2f0 (patch) | |
tree | d3fa39691d4f533e8bd69e5d03bd7556b021c565 /net | |
parent | b93a4daed27240d6cab9bd821e4751bbbf0b0aea (diff) | |
download | pkgsrc-53d63ffb5b75afadab2200882af3deda8c9fd2f0.tar.gz |
Do not install as bin.bin mode 555, but rather use the default
provided by the pkg system (the INSTALL macro for make already
has -g and -o, so remove the extra options from Makefile.in).
Diffstat (limited to 'net')
-rw-r--r-- | net/arpwatch/patches/patch-ab | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/net/arpwatch/patches/patch-ab b/net/arpwatch/patches/patch-ab index 7d48669464d..532caae2584 100644 --- a/net/arpwatch/patches/patch-ab +++ b/net/arpwatch/patches/patch-ab @@ -1,7 +1,7 @@ -$NetBSD: patch-ab,v 1.2 1998/08/07 11:10:36 agc Exp $ +$NetBSD: patch-ab,v 1.3 1998/08/09 20:37:17 kim Exp $ ---- Makefile.in.orig Mon Apr 27 18:13:13 1998 -+++ Makefile.in Mon Apr 27 19:40:23 1998 +--- Makefile.in.orig Thu Apr 24 23:02:01 1997 ++++ Makefile.in Sun Aug 9 16:27:51 1998 @@ -30,8 +30,10 @@ BINDEST = @sbindir@ # Pathname of directory to install the man page @@ -24,3 +24,14 @@ $NetBSD: patch-ab,v 1.2 1998/08/07 11:10:36 agc Exp $ # Standard CFLAGS CFLAGS = $(CCOPT) $(DEFS) $(INCLS) +@@ -109,8 +112,8 @@ + $(CC) $(CFLAGS) -o $@ zap.o intoa.o -lutil + + install: force +- $(INSTALL) -m 555 -o bin -g bin arpwatch $(DESTDIR)$(BINDEST) +- $(INSTALL) -m 555 -o bin -g bin arpsnmp $(DESTDIR)$(BINDEST) ++ $(INSTALL) arpwatch $(DESTDIR)$(BINDEST) ++ $(INSTALL) arpsnmp $(DESTDIR)$(BINDEST) + + install-man: force + $(INSTALL) -m 444 -o bin -g bin $(srcdir)/arpwatch.8 \ |