diff options
author | asami <asami@FreeBSD.org> | 1996-12-18 02:27:44 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-12-18 02:27:44 +0000 |
commit | 299f6a76510d747d62981902c920dbf9ce3a8bb3 (patch) | |
tree | 4fea7ce88cf44f345ebec073692f9ef32e54f81a /Mk | |
parent | 2e8eee4edb18244e399b5c29edb114361a3c47b4 (diff) | |
download | FreeBSD-ports-299f6a76510d747d62981902c920dbf9ce3a8bb3.zip FreeBSD-ports-299f6a76510d747d62981902c920dbf9ce3a8bb3.tar.gz |
Add missing targets (extract, patch) in the IGNORE (INTERACTIVE &
PATCH, etc.) section. Also sort them in order of execution like other
parts of this file.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index b8ef909..66220f8 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -6,7 +6,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.238 1996/12/12 04:32:25 asami Exp $ +# $Id: bsd.port.mk,v 1.239 1996/12/17 12:20:53 asami Exp $ # # Please view me with 4 column tabs! @@ -635,18 +635,22 @@ IGNORECMD= ${DO_NADA} .else IGNORECMD= ${ECHO_MSG} "===> ${PKGNAME} ${IGNORE}." .endif -all: - @${IGNORECMD} -build: - @${IGNORECMD} -install: - @${IGNORECMD} fetch: @${IGNORECMD} checksum: @${IGNORECMD} +extract: + @${IGNORECMD} +patch: + @${IGNORECMD} configure: @${IGNORECMD} +all: + @${IGNORECMD} +build: + @${IGNORECMD} +install: + @${IGNORECMD} package: @${IGNORECMD} .endif |