diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-06-19 11:00:45 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-06-19 11:00:45 +0000 |
commit | b421bd3e4db4fef1092844986cd02e1cc2a037c7 (patch) | |
tree | 38dd718418f781647208d796220d95dfdffd80ce /audio/aureal-kmod | |
parent | 918ff48a9f78c3422ac46989002a019e02d817b2 (diff) | |
download | FreeBSD-ports-b421bd3e4db4fef1092844986cd02e1cc2a037c7.zip FreeBSD-ports-b421bd3e4db4fef1092844986cd02e1cc2a037c7.tar.gz |
Fix test for presence of source tree.
Submitted by: imp
Diffstat (limited to 'audio/aureal-kmod')
-rw-r--r-- | audio/aureal-kmod/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/aureal-kmod/Makefile b/audio/aureal-kmod/Makefile index 55d21ae..b455de3 100644 --- a/audio/aureal-kmod/Makefile +++ b/audio/aureal-kmod/Makefile @@ -99,8 +99,7 @@ pre-fetch: @${FALSE} .endif .endfor - - @if [ ! -d /sys -o ! -d ${SRCPREFIX}/sys ]; then \ + @if [ ! -d /sys -a ! -d ${SRCPREFIX}/sys ]; then \ ${ECHO} "****************************************" ; \ ${ECHO} " You need to extract kernel source tree" ; \ ${ECHO} " before you build this package..." ; \ |