diff options
author | asami <asami@FreeBSD.org> | 1997-03-06 04:09:59 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-03-06 04:09:59 +0000 |
commit | 9aaba8f20a2bf4fa6d2c5c4ce77321ee3c548365 (patch) | |
tree | d0dc3835c881fae43df7c413859b7558749088c5 /editors | |
parent | 283e2fbdcb17496fb355b44a1215f899008ef62e (diff) | |
download | FreeBSD-ports-9aaba8f20a2bf4fa6d2c5c4ce77321ee3c548365.zip FreeBSD-ports-9aaba8f20a2bf4fa6d2c5c4ce77321ee3c548365.tar.gz |
Conditionalize the question asking to !defined(PACKAGE_BUILDING).
Diffstat (limited to 'editors')
-rw-r--r-- | editors/e93/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/editors/e93/Makefile b/editors/e93/Makefile index a1c88ba..0e0341e 100644 --- a/editors/e93/Makefile +++ b/editors/e93/Makefile @@ -3,7 +3,7 @@ # Date created: 21 June 1995 # Whom: Satoshi Asami (asami) # -# $Id: Makefile,v 1.9 1996/11/17 07:01:21 obrien Exp $ +# $Id: Makefile,v 1.10 1996/11/18 09:52:45 asami Exp $ # DISTNAME= e93-1.2r6X @@ -16,10 +16,14 @@ MAINTAINER= asami@FreeBSD.ORG MAKEFILE= makefile USE_X11= yes + +.if !defined(PACKAGE_BUILDING) IS_INTERACTIVE= yes # asks "ok?" about license pre-install: - @/usr/bin/env PKG_PREFIX=${PREFIX} /bin/sh ${PKGDIR}/REQ ${PKGNAME} INSTALL + @${SETENV} PKG_PREFIX=${PREFIX} /bin/sh ${PKGDIR}/REQ ${PKGNAME} INSTALL +.endif + do-install: ${MKDIR} ${PREFIX}/lib/e93 ${PREFIX}/share/doc/e93 (cd ${WRKSRC}; \ |