![](https://secure.gravatar.com/avatar/67fec2205964a6ed3201370dde79cb73.jpg?s=120&d=mm&r=g)
Stuart Edwards <sedwards2@...360...> writes:
Tried to package the Intel Aqua build and ran into the following which raises a couple of points:
Looking for dependencies. Round 1 Looking for dependencies. Round 2 Looking for dependencies. Round 3 Could not rewrite dylb paths for bundled libraries. This requires Macports to be installed in a PREFIX of at least 50 characters in length.
The package will still work if the following line is uncommented in Inkscape.app/Contents/Resources/bin/inkscape: export DYLD_LIBRARY_PATH="$TOP/lib"
Application bundle creation failed
Thanks for any help
Stu
There appears to be a bug in osx-app.sh... on line 469 replace:
if [ "$PATHLENGTH" -ge "50" ]; then
with
if [ "$PATHLENGHT" -le "50" ]; then
the -ge meant GREATER OR EQUAL when it should have been LESS OR EQUAL. A great big oops.
Cheers,
Lloyd
P.S. My built app still doesn't work :(