diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-04-23 13:02:52 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-04-23 13:02:52 +0000 |
commit | b165a3a9b5864235aa405bcb2c8612fba408be8f (patch) | |
tree | 4d78cf717e68fb1fb973b2b5bf7f16b45b83e68f /misc/mshell | |
parent | b41fc8e42ac239e3e8d9bbf6521b2b22c4875b19 (diff) | |
download | ports-b165a3a9b5864235aa405bcb2c8612fba408be8f.tar.gz ports-b165a3a9b5864235aa405bcb2c8612fba408be8f.zip |
Notes
Diffstat (limited to 'misc/mshell')
-rw-r--r-- | misc/mshell/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/misc/mshell/Makefile b/misc/mshell/Makefile index 2a2694a528bc..491a20b543e5 100644 --- a/misc/mshell/Makefile +++ b/misc/mshell/Makefile @@ -3,7 +3,7 @@ # Date created: 24 September 1994 # Whom: jmz # -# $Id$ +# $Id: Makefile,v 1.5 1995/04/15 03:45:46 asami Exp $ # DISTNAME= mshell @@ -16,16 +16,10 @@ MAINTAINER= jmz@FreeBSD.org NO_WRKSUBDIR= yes -EXTRACT_COOKIE?= ${.CURDIR}/.extract_done - -extract: fetch pre-extract ${EXTRACT_COOKIE} - -${EXTRACT_COOKIE}: - @echo "===> Extracting for ${DISTNAME}" +do-extract: @rm -rf ${WRKDIR} @mkdir -p ${WRKDIR} zcat ${DISTDIR}/${DISTFILES} |(cd ${WRKDIR}; \ awk '{if (/^#!/) x++} {if(x) print $$0'}| /bin/sh) - @touch -f ${EXTRACT_COOKIE} .include <bsd.port.mk> |