diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-16 12:16:37 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-16 12:16:37 +0000 |
commit | d37c041fd1ee2dd6063972260dfe4c28c9c9d32b (patch) | |
tree | 542f7f21659c81149c030f1b5630bffd07e93b43 | |
parent | e50d39693859148fae64ef2b39bf0d6545dadc43 (diff) |
Notes
-rw-r--r-- | comms/bfhist/Makefile | 1 | ||||
-rw-r--r-- | comms/bfhist/files/patch-Makefile | 14 |
2 files changed, 14 insertions, 1 deletions
diff --git a/comms/bfhist/Makefile b/comms/bfhist/Makefile index bd55a2ce3e36..8b929cd1802c 100644 --- a/comms/bfhist/Makefile +++ b/comms/bfhist/Makefile @@ -12,5 +12,4 @@ COMMENT= Statistics generator for BinkleyForce FTN mailer PLIST_FILES= bin/bfhist -NO_STAGE= yes .include <bsd.port.mk> diff --git a/comms/bfhist/files/patch-Makefile b/comms/bfhist/files/patch-Makefile new file mode 100644 index 000000000000..ab4eafa15ab4 --- /dev/null +++ b/comms/bfhist/files/patch-Makefile @@ -0,0 +1,14 @@ +--- ./Makefile.orig 2004-11-26 09:58:08.000000000 +0100 ++++ ./Makefile 2014-02-16 13:15:20.704540535 +0100 +@@ -13,6 +13,9 @@ + rm -f $(OBJS) + rm -f $(BINS) + +-install: all +- $(INSTALL) bfhist $(PREFIX)/bin ++strip: ++ strip bfhist ++ ++install: strip all ++ $(INSTALL) bfhist $(DESTDIR)$(PREFIX)/bin + |