diff options
author | linimon <linimon@FreeBSD.org> | 2010-12-17 11:54:54 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2010-12-17 11:54:54 +0800 |
commit | 851be1a85b0228b481c190bb1b2366cf593d132b (patch) | |
tree | 1f9eba928b592c0fbe17021027846f6229fcb452 | |
parent | 6457ad2d7b0a6b87bc9c53b84cd870d9385a0a24 (diff) | |
download | freebsd-ports-graphics-851be1a85b0228b481c190bb1b2366cf593d132b.tar.gz freebsd-ports-graphics-851be1a85b0228b481c190bb1b2366cf593d132b.tar.zst freebsd-ports-graphics-851be1a85b0228b481c190bb1b2366cf593d132b.zip |
Use the $SRC_BASE Makevar instead of hard-coding.
Approved by: maintainer
-rw-r--r-- | multimedia/pwcbsd/Makefile | 2 | ||||
-rw-r--r-- | sysutils/biosfont/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/pwcbsd/Makefile b/multimedia/pwcbsd/Makefile index e92e103e78b..62de5970dda 100644 --- a/multimedia/pwcbsd/Makefile +++ b/multimedia/pwcbsd/Makefile @@ -41,7 +41,7 @@ EXTRA_PATCHES= ${FILESDIR}/extra-patch-Makefile.kld \ ${FILESDIR}/extra-patch-pwc.h .endif -.if !exists(/usr/src/sys/Makefile) +.if !exists(${SRC_BASE}/sys/Makefile) IGNORE= requires kernel source files .endif diff --git a/sysutils/biosfont/Makefile b/sysutils/biosfont/Makefile index d0c94c7b722..ab240c68034 100644 --- a/sysutils/biosfont/Makefile +++ b/sysutils/biosfont/Makefile @@ -27,7 +27,7 @@ MAKE_ENV+= KMODDIR=${KMODDIR} .include <bsd.port.pre.mk> -.if !exists(/usr/src/sys/Makefile) +.if !exists(${SRC_BASE}/sys/Makefile) IGNORE= requires kernel source files .endif |