diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-09-06 04:00:24 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-09-06 04:00:24 +0000 |
commit | b98ad6bb147758c8bca8a30a891594e4d0e0d3e9 (patch) | |
tree | 0a32b3d6f6fa178fe2f83b377504fcd876cac43c | |
parent | Update to 9.18 (diff) |
Use real relative directory references, i.e., add ${.CURDIR} to them :)
Noticed by: Randy Pratt <rpratt@ezwv.com>
-rw-r--r-- | net/punkbuster-data/Makefile | 2 | ||||
-rw-r--r-- | net/punkbuster/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/punkbuster-data/Makefile b/net/punkbuster-data/Makefile index 35b4ef7cc986..33b194a27c14 100644 --- a/net/punkbuster-data/Makefile +++ b/net/punkbuster-data/Makefile @@ -31,7 +31,7 @@ DESCR= ${PUNKBUSTER_PORT}/pkg-descr PKGMESSAGE= ${PUNKBUSTER_PORT}/pkg-message USE_LINUX_PREFIX= yes -PUNKBUSTER_PORT= ../punkbuster +PUNKBUSTER_PORT= ${.CURDIR}/../punkbuster # the later is not working, hummm. Help? #PUNKBUSTER_DIR!= cd ${PUNKBUSTER_PORT} && ${MAKE} -V PUNKBUSTER_DIR PUNKBUSTER_DIR= /usr/games/punkbuster diff --git a/net/punkbuster/Makefile b/net/punkbuster/Makefile index 46a37a556074..3ffcfad46592 100644 --- a/net/punkbuster/Makefile +++ b/net/punkbuster/Makefile @@ -31,7 +31,7 @@ STRIP_LINUX= ${LINUXBASE}/usr/bin/strip PUNKBUSTER_DIR= /usr/games/punkbuster/ PUNKBUSTER_PROGRAM= pb -PUNKBUSTER_DATA_PORT= ../punkbuster-data +PUNKBUSTER_DATA_PORT= ${.CURDIR}/../punkbuster-data PUNKBUSTER_DATA!= cd ${PUNKBUSTER_DATA_PORT} && ${MAKE} -V PUNKBUSTER_DATA PUNKBUSTER_DATA_DISTFILES!= cd ${PUNKBUSTER_DATA_PORT} && ${MAKE} -V DISTFILES PUNKBUSTER_DOC_DIR= usr/doc/${PKGNAME}/ |