diff options
author | linimon <linimon@FreeBSD.org> | 2004-01-07 00:53:04 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-01-07 00:53:04 +0000 |
commit | 815f1f85dd1085541db281b0735a7a7910d548ed (patch) | |
tree | 3396c588b2b6a379bd3083f8f587f165bf5f1a81 /www/linuxpluginwrapper | |
parent | 89af79d4b4ab42bb51801e90308c43e3356a8321 (diff) | |
download | FreeBSD-ports-815f1f85dd1085541db281b0735a7a7910d548ed.zip FreeBSD-ports-815f1f85dd1085541db281b0735a7a7910d548ed.tar.gz |
Fix 'make describe' on older versions of 5.x by removing extra
set of parentheses. Seems to do the right thing on 4.9, 5.0,
and -current now.
Diffstat (limited to 'www/linuxpluginwrapper')
-rw-r--r-- | www/linuxpluginwrapper/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/linuxpluginwrapper/Makefile b/www/linuxpluginwrapper/Makefile index 2207c2d..e731213 100644 --- a/www/linuxpluginwrapper/Makefile +++ b/www/linuxpluginwrapper/Makefile @@ -54,7 +54,7 @@ RTLD= /libexec/ld-elf.so.1 CFLAGS+= -DDEBUG=1 .endif -.if (${OSVERSION} < 501107) && !defined(PACKAGE_BUILDING) +.if ${OSVERSION} < 501107 && !defined(PACKAGE_BUILDING) pre-everything:: if ! strings ${RTLD} | ${GREP} libmap.conf > /dev/null 2>&1; then \ ${ECHO_MSG} 'Please enable libmap.conf(5) feature for rtld(1).'; \ |