> ### this other one with Renaissance : > Making all for app GSMarkupBrowser... > Creating GSMarkupBrowser.app/Resources/GSMarkupBrowser.desktop... > /bin/sh: pl2link: not found > make[2]: *** [GSMarkupBrowser.app/Resources/GSMarkupBrowser.desktop] Erreur > 127 > make[1]: *** [GSMarkupBrowser.all.app.variables] Erreur 2 > make[1]: quittant le répertoire « > /home/patrick/SOURCE/Renaissance-0.9.0/Tools » > make: *** [internal-all] Erreur 2 > > My env when errors occur : > echo $GNUSTEP_PATHLIST > /home/patrick/GNUstep:/usr/GNUstep/Local:/usr/GNUstep/Network:/usr/GNUstep/System
I looked at your script ... you should do a 'make' first, and only later a 'make install' as root. Otherwise, you re building the software as root. ;-) If you do want to build as root, then you need to make sure that the PATH is set up correctly for root, and have to be prepared to have files cowned by root in your local directory ? That seems weird though - it's more likely a typo. ;-) So, to fix it, add a 'make' before your 'sudo -E make install': wget http://www.gnustep.it/Renaissance/Download/Renaissance-$VERSION_RENAISSANCE.tar.gz tar zxvf Renaissance-$VERSION_RENAISSANCE.tar.gz cd Renaissance-$VERSION_RENAISSANCE # Compilation make sudo -E make GNUSTEP_INSTALLATION_DOMAIN=SYSTEM install Thanks _______________________________________________ Discuss-gnustep mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnustep
