diff options
author | sevan <sevan@pkgsrc.org> | 2015-03-02 23:22:01 +0000 |
---|---|---|
committer | sevan <sevan@pkgsrc.org> | 2015-03-02 23:22:01 +0000 |
commit | a1fa94fff0b2c3444ab6bb4f7d2cf143e162c173 (patch) | |
tree | b7917477086647e64e7309045c685acad7715151 /net | |
parent | 1c3bae7d50a4cde29cd83634b77d0a94e4d6c4cf (diff) | |
download | pkgsrc-a1fa94fff0b2c3444ab6bb4f7d2cf143e162c173.tar.gz |
Use the WRKDIR variable rather than referencing work directly with find(1)
Reviewed by wiz@
Diffstat (limited to 'net')
-rw-r--r-- | net/exabgp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/exabgp/Makefile b/net/exabgp/Makefile index 4a378b25a88..4e2b59145b9 100644 --- a/net/exabgp/Makefile +++ b/net/exabgp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2015/02/19 12:23:52 he Exp $ +# $NetBSD: Makefile,v 1.11 2015/03/02 23:22:01 sevan Exp $ VERSION= 3.4.7 DISTNAME= ${VERSION} @@ -41,7 +41,7 @@ USE_LANGUAGES= # none INSTALLATION_DIRS= share/exabgp bin pre-install: - find work -name '*.orig' | xargs rm -f + find ${WRKDIR} -name "*.orig" | xargs rm -f .include "../../lang/python/distutils.mk" .include "../../lang/python/application.mk" |