diff options
author | mandree <mandree@FreeBSD.org> | 2014-07-04 02:22:12 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2014-07-04 02:22:12 +0800 |
commit | f6a6c96dfd30815194239947ca2ca7690171cb3c (patch) | |
tree | 66b8aeab46dca885fb32925cc0792dd09d06ff43 /graphics | |
parent | 72631598c5bb80be62e91bc4549958c0c1d5fb26 (diff) | |
download | freebsd-ports-gnome-f6a6c96dfd30815194239947ca2ca7690171cb3c.tar.gz freebsd-ports-gnome-f6a6c96dfd30815194239947ca2ca7690171cb3c.tar.zst freebsd-ports-gnome-f6a6c96dfd30815194239947ca2ca7690171cb3c.zip |
Avoid OBJDUMP warning on 10+, make error message more accurate.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/OpenEXR/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/OpenEXR/Makefile b/graphics/OpenEXR/Makefile index 2c169e8177b5..adcb84291c86 100644 --- a/graphics/OpenEXR/Makefile +++ b/graphics/OpenEXR/Makefile @@ -63,11 +63,11 @@ post-patch: # library _ilm_libcxx=${COMPILER_FEATURES:Mlib*c++} pre-configure: - @${OBJDUMP} -j .dynstr -p ${LOCALBASE}/lib/libImath.so \ + @${OBJDUMP} -p ${LOCALBASE}/lib/libImath.so \ | ${EGREP} -q '^[[:space:]]*NEEDED[[:space:]]+${_ilm_libcxx:C/\+/\\+/g}\.' \ - || { ${ECHO_CMD} "*** Your ilmbase package uses a non-default C++ standard library. ***" ; \ - ${ECHO_CMD} "*** Please recompile and reinstall ilmbase with the default ***" ; \ - ${ECHO_CMD} "*** C++ compiler before trying to build OpenEXR. Aborting. ***" ; \ + || { ${ECHO_CMD} "*** Your ilmbase package uses a different C++ standard library than ***" ; \ + ${ECHO_CMD} "*** OpenEXR would. Please recompile and reinstall ilmbase with the ***" ; \ + ${ECHO_CMD} "*** same C++ std. library before trying to build OpenEXR. Abort. ***" ; \ exit 1; } |