summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsevan <sevan>2015-03-02 23:22:01 +0000
committersevan <sevan>2015-03-02 23:22:01 +0000
commitf565b6c211fd78d68e532ab3c92275a58edbcf57 (patch)
treeb7917477086647e64e7309045c685acad7715151
parentd32bd4c560196b351379e9df50a1fb33be7d8b6f (diff)
downloadpkgsrc-f565b6c211fd78d68e532ab3c92275a58edbcf57.tar.gz
Use the WRKDIR variable rather than referencing work directly with find(1)
Reviewed by wiz@
-rw-r--r--net/exabgp/Makefile4
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"