install.sh tries to find g++ by using the "which" command, which searches the command path. If it's not finding g++, that means that g++ is not on your search path. /usr/bin is nearly always on the path.
It's likely g++ is not installed. It's not necessarily included with gcc. If it is installed, but in an unusual spot, all you need to do is edit install.sh to specify the location of g++ in the line below. Replace everything between the ` symbols. GPP=`which g++` On Sun, May 18, 2008 at 2:06 PM, Matt Godwin <[EMAIL PROTECTED]> wrote: > It seems the install is not finding g++ on the server and i have cointacted > my host who says GCC is installed in /usr/bin . so i am think the install.sh > perhaps needs to be modified to located the GCC which contains g++ which it > is needing. > > Does anyone have a work around for this? I am using Fedora 7 and latest > Plone package. > > [EMAIL PROTECTED] sudo ./install.sh standalone > which: no g++ in > (/usr/kerberos/sbin:/usr/kerberos/bin://sbin://bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin) > Stand-Alone Zope Instance selected > > Detailed installation log being written to > /var/www/vhosts/305royalty.com/httpdocs/install.log > > Root install method chosen > zlib installation: no > libjpeg installation: local > Note: g++ is required for the install. Exiting now. > > > _______________________________________________ > Setup mailing list > [email protected] > http://lists.plone.org/mailman/listinfo/setup > -- ______________________________________________________ Steve McMahon Reid-McMahon, LLC [EMAIL PROTECTED] [EMAIL PROTECTED] _______________________________________________ Setup mailing list [email protected] http://lists.plone.org/mailman/listinfo/setup
