diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-02-10 05:00:53 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-02-10 05:00:53 +0000 |
commit | 77669a4314e10e07f9d5738aab5a65123b81558d (patch) | |
tree | 7772260d9dc8c7a18470fc089cfa7f64e8f48cba /www/linuxpluginwrapper | |
parent | 75fb56a43c9c2d7f62dfe6fde03b6512dafdb357 (diff) | |
download | ports-77669a4314e10e07f9d5738aab5a65123b81558d.tar.gz ports-77669a4314e10e07f9d5738aab5a65123b81558d.zip |
Workaround for old make.
Submitted by: Andrew J Caines <A.J.Caines@halplant.com>
Notes
Notes:
svn path=/head/; revision=100532
Diffstat (limited to 'www/linuxpluginwrapper')
-rw-r--r-- | www/linuxpluginwrapper/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/linuxpluginwrapper/Makefile b/www/linuxpluginwrapper/Makefile index e0b7384a4f02..e7fb90e5b01c 100644 --- a/www/linuxpluginwrapper/Makefile +++ b/www/linuxpluginwrapper/Makefile @@ -56,7 +56,8 @@ RTLD= /libexec/ld-elf.so.1 CFLAGS+= -DDEBUG=1 .endif -.if (${OSVERSION} < 490102 || ${OSVERSION} >= 500000 && ${OSVERSION} < 501107) && !defined(PACKAGE_BUILDING) +.if !defined(PACKAGE_BUILDING) +.if ${OSVERSION} < 490102 || ${OSVERSION} >= 500000 && ${OSVERSION} < 501107 pre-everything:: @if ! strings ${RTLD} | ${GREP} libmap.conf > /dev/null 2>&1; then \ ${ECHO_MSG} 'Please enable libmap.conf(5) feature for rtld(1).'; \ @@ -71,6 +72,7 @@ pre-everything:: ${FALSE}; \ fi .endif +.endif post-build: @${SED} -e 's,%%PREFIX%%,${PREFIX},' \ |