diff options
author | nork <nork@FreeBSD.org> | 2004-02-10 13:00:53 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2004-02-10 13:00:53 +0800 |
commit | 124c20faa82f30bd604608edb509a0a843f10e91 (patch) | |
tree | 4126854ed3f1cef1f1830393620719cf8f95d1b0 /www/linuxpluginwrapper | |
parent | 7b2bd9fc46972737a71362f26740585c289e6e32 (diff) | |
download | freebsd-ports-gnome-124c20faa82f30bd604608edb509a0a843f10e91.tar.gz freebsd-ports-gnome-124c20faa82f30bd604608edb509a0a843f10e91.tar.zst freebsd-ports-gnome-124c20faa82f30bd604608edb509a0a843f10e91.zip |
Workaround for old make.
Submitted by: Andrew J Caines <A.J.Caines@halplant.com>
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},' \ |