diff options
author | asami <asami@FreeBSD.org> | 1997-03-02 09:49:00 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-03-02 09:49:00 +0000 |
commit | e65c1ab17a40023639d204cd93d6a8f1814a64c4 (patch) | |
tree | 2ff799b6202a3ee68f2039cf6d4a1fc73d6a8d88 /graphics | |
parent | 151141fd334319256cb34bbcb7c0275be11b0e24 (diff) | |
download | FreeBSD-ports-e65c1ab17a40023639d204cd93d6a8f1814a64c4.zip FreeBSD-ports-e65c1ab17a40023639d204cd93d6a8f1814a64c4.tar.gz |
There is no need to "strip" executable in post-install target,
INSTALL_PROGRAM already takes care of that. Take out "-m486", it
won't help for P5/P6 machines anyway. Compress manpage.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xaos/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/graphics/xaos/Makefile b/graphics/xaos/Makefile index f320007..a62a059 100644 --- a/graphics/xaos/Makefile +++ b/graphics/xaos/Makefile @@ -3,7 +3,7 @@ # Date created: 24 February 1996 # Whom: Joseph Koshy <koshy@india.hp.com> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/02/28 10:52:50 tg Exp $ # DISTNAME= XaoS-2.2 @@ -21,9 +21,11 @@ MAINTAINER= ports@FreeBSD.ORG GNU_CONFIGURE= yes CFLAGS+= -DHAVE_SYS_PARAM_H \ - -O6 -m486 -fstrength-reduce -ffast-math -fomit-frame-pointer\ + -O6 -fstrength-reduce -ffast-math -fomit-frame-pointer\ -fforce-mem -fforce-addr -funroll-loops +MAN6= xaos.6 + # We need to supply our own install target as the distribution doesn't # supply one by default @@ -32,7 +34,6 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/doc/xaos.6 ${PREFIX}/man/man6 post-install: - strip ${PREFIX}/bin/xaos .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/XaoS ${INSTALL_DATA} ${WRKSRC}/doc/tutorial.txt ${PREFIX}/share/doc/XaoS |