38 | | I thought adding "''configure.cxxflags''" to the Portfile would fix it, but somewhere along the line, something is sneaking an extra "''-arch x86_64 -stdlib=libc++''" in at the end of '''$CXXFLAGS''' - even if I explicitly specify the contents of "''configure.cxxflags''" in Portfile. |
| 38 | To fix: |
| 39 | {{{ |
| 40 | % pwd |
| 41 | /opt/local/var/macports/sources/rsync.macports.org/release/tarballs/ports/security/tripwire |
| 42 | |
| 43 | % diff -u Portfile.dist Portfile |
| 44 | --- Portfile.dist 2013-09-19 00:30:33.000000000 -0700 |
| 45 | +++ Portfile 2014-07-26 21:25:15.000000000 -0700 |
| 46 | @@ -52,6 +52,7 @@ |
| 47 | } |
| 48 | |
| 49 | configure.args --sysconfdir="${prefix}/etc/${name}" |
| 50 | +configure.cxx_stdlib libstdc++ |
| 51 | |
| 52 | # Installation locations |
| 53 | set bindir "${prefix}/sbin" |
| 54 | }}} |