diff options
author | Boris Samorodov <bsam@FreeBSD.org> | 2007-04-10 18:29:39 +0000 |
---|---|---|
committer | Boris Samorodov <bsam@FreeBSD.org> | 2007-04-10 18:29:39 +0000 |
commit | 20b11fde63db5f4117229df40d33c6e147f3b1c9 (patch) | |
tree | 55a816c53e62d0441cc30bedc156b26ca7b433ba /emulators/linux_base-f10 | |
parent | 0227c3b871f58b7622088360b1b9b78c72a98a9c (diff) | |
download | ports-20b11fde63db5f4117229df40d33c6e147f3b1c9.tar.gz ports-20b11fde63db5f4117229df40d33c6e147f3b1c9.zip |
Get rid of annoying message when do a "make index" at the system without
linuxolator started:
-----
sysctl: unknown oid 'compat.linux.osrelease'
-----
Reported by: netchild, rafan, chinsan
Suggested by: rafan
Notes
Notes:
svn path=/head/; revision=189702
Diffstat (limited to 'emulators/linux_base-f10')
-rw-r--r-- | emulators/linux_base-f10/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/linux_base-f10/Makefile b/emulators/linux_base-f10/Makefile index c16024b93308..9fb92628100f 100644 --- a/emulators/linux_base-f10/Makefile +++ b/emulators/linux_base-f10/Makefile @@ -121,7 +121,7 @@ PLIST= pkg-plist .include <bsd.port.pre.mk> -LINUX_OSRELEASE!= ${SYSCTL} -n compat.linux.osrelease +LINUX_OSRELEASE!= ${ECHO} `${SYSCTL} -n compat.linux.osrelease 2>/dev/null` .if ${LINUX_OSRELEASE} == "2.4.2" IGNORE= compat.linux.osrelease: 2.4.2 is not supported |