diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
commit | dbc8aa6cc1cb1abadce30cfe133c7a5c2ed2f34b (patch) | |
tree | deebef625a152490a0bbcb7e5602d05a59b1c010 /www/seamonkey | |
parent | Make bsd.port.mk includable in two phases. bsd.port.pre.mk defines only (diff) |
Use bsd.port.{pre,post}.mk. Either use them to avoid having to define
something already there (PORTOBJFORMAT, OSVERSION) or move stuff from after
.include <bsd.port.mk> to before.
(This is not by any means the complete list but just the ones I've noticed
recently.)
Notes
Notes:
svn path=/head/; revision=14465
Diffstat (limited to 'www/seamonkey')
-rw-r--r-- | www/seamonkey/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index 5851f7c25344..bccaa7808569 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -3,7 +3,7 @@ # Date created: 31 Mar 1998 # Whom: eivind/dima/jseger # -# $Id: Makefile,v 1.26 1998/07/22 11:50:31 asami Exp $ +# $Id: Makefile,v 1.27 1998/10/15 01:16:23 jseger Exp $ # DISTNAME= unix-19980429 @@ -24,9 +24,9 @@ MAKE_ENV= NO_SECURITY=1 MOZ_MEDIUM=1 MOZILLA_CLIENT=1 NO_MDUPDATE=1 \ BUILD_OPT=1 NO_NETSCAPE_STATIC=1 LD_LIBRARY_PATH=${LOCALBASE}/lib REQUIRES_MOTIF= yes -OSNAME= `uname -s` -OSVER= `uname -r | ${SED} 's/-.*//'` -OBJDIR= ${WRKSRC}/dist/${OSNAME}${OSVER}_OPT.OBJ +.include <bsd.port.pre.mk> + +OBJDIR= ${WRKSRC}/dist/${OPSYS}${OSREL}_OPT.OBJ do-install: @${MKDIR} ${PREFIX}/lib/mozilla/bin @@ -40,4 +40,4 @@ do-install: @strip ${PREFIX}/lib/mozilla/bin/moz-export @chown -R bin.bin ${PREFIX}/lib/mozilla -.include <bsd.port.mk> +.include <bsd.port.post.mk> |