diff options
author | jlam <jlam@pkgsrc.org> | 2006-06-06 04:48:19 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-06-06 04:48:19 +0000 |
commit | 627dc60046ba2edbfcdc34b2cb837e9267888498 (patch) | |
tree | d254119ba3260d7cb6e773ab9cda08b02d15f9b5 /mk/bsd.pkg.mk | |
parent | 4a1c92e7752db2d1b1adaa88fe0fbcef29e0972d (diff) | |
download | pkgsrc-627dc60046ba2edbfcdc34b2cb837e9267888498.tar.gz |
Refactor "patch" code into correspondingly named subdirectory of
pkgsrc/mk. Also get rid of the recursive make for the "patch" target.
This basically merges the "patch" phase into the "tools" phase.
There should eventually be a standalone script that can be used to
verify checksums listed in distinfo that should be used instead of
the roll-your-own code in the do-pkgsrc-patch target.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r-- | mk/bsd.pkg.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 4976dc1f39b..73334b59e3c 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1840 2006/06/06 03:05:48 jlam Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1841 2006/06/06 04:48:19 jlam Exp $ # # This file is in the public domain. # @@ -536,9 +536,6 @@ USE_TOOLS+= tee tsort USE_TOOLS+= shlock sleep .endif -# Patch -.include "../../mk/bsd.pkg.patch.mk" - # Tools .include "../../mk/tools/bsd.tools.mk" @@ -1155,6 +1152,9 @@ do-test: # Extract .include "${PKGSRCDIR}/mk/extract/bsd.extract.mk" +# Patch +.include "${PKGSRCDIR}/mk/patch/bsd.patch.mk" + # Install .include "${PKGSRCDIR}/mk/install/bsd.install.mk" |