Ryan Carsten Schmidt
Ryan Carsten Schmidt
> If we want to support MacPorts installs that use non-default configure args or env vars, we should remember those settings for use when selfupdating. And if we do that,...
It's an easy change to the code, certainly, and I do want to make this change, but it's going to break so many ports.
That should work and would be simpler.
Yes I should do that.
> how about using the `${foo#bar}` prefix pattern expansion syntax to get the relative path? The problem with this is that we are perpetuating the [mistake](https://trac.macports.org/ticket/56756) of making assumptions about...
If avoiding Perl is strongly desired, the following should work: ``` bindir="${INSTALLDIR}/bin" && shopt -s extglob && rel="$${bindir//+([^\/])/..}" && $(LN_S) -f "$${rel:1}${TCLSH}" "${DESTDIR}${INSTALLDIR}/bin/port-tclsh" ``` The relative path this constructs is...
Could somebody report the problem to the developers of duckdb? They offer a binary of 0.4.0 for macOS, so it must be possible to build it.
> Iain has rpath turned on for 10.11 and up, where it is required Why is rpath required on 10.11 and up? Apologies, I feel like I've asked this 12...
> when running the gcc test suite, using /bin/sh, MacOS does not allow overriding the library locations using DYLD_LIBRARY_PATH as of 10.11. Ah right. Due to SIP. > I know...
I don't have personal experience with Linux but I imagine the same issue would apply there and on other UNIX operating systems that use LIBRARY_PATH, they just don't have SIP...