diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-06-19 19:00:45 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-06-19 19:00:45 +0800 |
commit | b421bd3e4db4fef1092844986cd02e1cc2a037c7 (patch) | |
tree | 38dd718418f781647208d796220d95dfdffd80ce /audio | |
parent | 918ff48a9f78c3422ac46989002a019e02d817b2 (diff) | |
download | freebsd-ports-graphics-b421bd3e4db4fef1092844986cd02e1cc2a037c7.tar.gz freebsd-ports-graphics-b421bd3e4db4fef1092844986cd02e1cc2a037c7.tar.zst freebsd-ports-graphics-b421bd3e4db4fef1092844986cd02e1cc2a037c7.zip |
Fix test for presence of source tree.
Submitted by: imp
Diffstat (limited to 'audio')
-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 55d21ae83d3..b455de3ba02 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..." ; \ |