diff options
author | tron <tron@pkgsrc.org> | 2013-11-19 13:00:10 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2013-11-19 13:00:10 +0000 |
commit | dd57ac4e1a803e72f5e9683ed7abeae716d8876d (patch) | |
tree | 55d26e7bf6f0336ec8e985192ea7eb7117351208 | |
parent | 590c8ce621b6bb6902b7ee6c8254d40726e5ffb1 (diff) | |
download | pkgsrc-dd57ac4e1a803e72f5e9683ed7abeae716d8876d.tar.gz |
Remove unnecessary command line options from build and install targets.
-rw-r--r-- | security/sslscan/distinfo | 4 | ||||
-rw-r--r-- | security/sslscan/patches/patch-Makefile | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/security/sslscan/distinfo b/security/sslscan/distinfo index 18ea3a675f9..a311735a7b0 100644 --- a/security/sslscan/distinfo +++ b/security/sslscan/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.1.1.1 2013/11/19 12:46:07 tron Exp $ +$NetBSD: distinfo,v 1.2 2013/11/19 13:00:10 tron Exp $ SHA1 (sslscan-1.8.2.tgz) = 4982ff622ca1f05829a3910be5e3903e91cfdd68 RMD160 (sslscan-1.8.2.tgz) = a048d3a29d56b34a0fb2ea8e5a5dc2ba3e773d76 Size (sslscan-1.8.2.tgz) = 22176 bytes -SHA1 (patch-Makefile) = dd96b543bca3ff376eba05a2ee3444d5e2517cb2 +SHA1 (patch-Makefile) = e5d8432701891c3c4f7b2f5065a19a6aad0860a6 SHA1 (patch-sslscan.c) = 8415623420c1052a305e3ce485776ae9fcc3df42 diff --git a/security/sslscan/patches/patch-Makefile b/security/sslscan/patches/patch-Makefile index 65d9eaffb8a..4a6c5e77244 100644 --- a/security/sslscan/patches/patch-Makefile +++ b/security/sslscan/patches/patch-Makefile @@ -1,4 +1,4 @@ -$NetBSD: patch-Makefile,v 1.1.1.1 2013/11/19 12:46:07 tron Exp $ +$NetBSD: patch-Makefile,v 1.2 2013/11/19 13:00:10 tron Exp $ Use appropriate commands for build and installation. @@ -13,13 +13,13 @@ Use appropriate commands for build and installation. all: - gcc -g -Wall -lssl -o sslscan $(SRCS) $(LDFLAGS) $(CFLAGS) -+ $(CC) -g -Wall -lssl -o sslscan $(SRCS) $(LDFLAGS) $(CFLAGS) ++ $(CC) -Wall -lssl -o sslscan $(SRCS) $(LDFLAGS) $(CFLAGS) install: - cp sslscan $(BINPATH) - cp sslscan.1 $(MANPATH)man1 -+ $(BSD_INSTALL_PROGRAM) -s -m 755 sslscan $(DESTDIR)$(BINPATH) -+ $(BSD_INSTALL_MAN) -m 644 sslscan.1 $(DESTDIR)$(MANPATH)/man1 ++ $(BSD_INSTALL_PROGRAM) sslscan $(DESTDIR)$(BINPATH) ++ $(BSD_INSTALL_MAN) sslscan.1 $(DESTDIR)$(MANPATH)/man1 uninstall: rm -f $(BINPATH)sslscan |