diff options
author | max <max@FreeBSD.org> | 1996-10-20 23:22:09 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1996-10-20 23:22:09 +0800 |
commit | e9819030c1c13cfa0b53aceaf5d2a33fa57b228a (patch) | |
tree | 2a32eab4673c4384c17ba1f78dac808af3feb793 /misc/mc | |
parent | 1a2ca874a512a84723e1b51d3ecea0d781bc44b4 (diff) | |
download | freebsd-ports-gnome-e9819030c1c13cfa0b53aceaf5d2a33fa57b228a.tar.gz freebsd-ports-gnome-e9819030c1c13cfa0b53aceaf5d2a33fa57b228a.tar.zst freebsd-ports-gnome-e9819030c1c13cfa0b53aceaf5d2a33fa57b228a.zip |
Take the setting of NOMANCOMPRESS into account.
Submitted by: "Philippe Charnier" <charnier@xp11.frmug.org>
We don't need --prefix=${PREFIX} for CONFIGURE_ARGS when GNU_CONFIGURE=yes.
Diffstat (limited to 'misc/mc')
-rw-r--r-- | misc/mc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/mc/Makefile b/misc/mc/Makefile index 6c2b32f65694..9d4d6dfa369f 100644 --- a/misc/mc/Makefile +++ b/misc/mc/Makefile @@ -3,7 +3,7 @@ # Date created: 15 Jul 1995 # Whom: torstenb@FreeBSD.ORG # -# $Id: Makefile,v 1.3 1995/11/26 10:47:52 asami Exp $ +# $Id: Makefile,v 1.4 1996/10/01 03:53:49 gpalmer Exp $ # DISTNAME= mc-3.2.1 @@ -11,11 +11,13 @@ CATEGORIES= misc MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ GNU_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX} --with-ncurses +CONFIGURE_ARGS= --with-ncurses STRIP= post-install: +.if !defined(NOMANCOMPRESS) @gzip -9nf ${PREFIX}/man/man1/mc.1 ${PREFIX}/man/man8/mcserv.8 +.endif .include <bsd.port.mk> |