GNOME Bugzilla – Bug 136633
Useless dependency on fileutiles on Solaris
Last modified: 2006-11-10 08:26:12 UTC
Doxygen needs GNU's install to build. But ginstall is nothing more than Berkley's install, which is avalaible on Solaris under /usr/ucb/install. So here patch to build doxygen on Solaris without the dependency on fileutile, as generated by cvs diff : Index: configure =========================================================== ======== RCS file: /u/kp3softd/cvsroot/configure,v retrieving revision 1.174 diff -r1.174 configure 321a322,327 > #Berkely's install is good too > if test -x /usr/ucb/install ; then > install_found=YES > install_prog="/usr/ucb/install" > fi >
What a stupid patch ! Here's a better one, with keeping the priority to gnu's tools Index: configure =================================================================== RCS file: /u/kp3softd/cvsroot/configure,v retrieving revision 1.174 diff -r1.174 configure 321a322,327 > #Berkely's install is good to > if test "$install_found" != "YES" -a -x /usr/ucb/install ; then > install_found=YES > install_prog="/usr/ucb/install"
Created attachment 54679 [details] [review] New configure script, modified from patch for bug # 317773 Here is an updated configure script that should be able to check for Solaris's install tool first.
After test runs from other Solaris users, I am closing this bug as fixed. Please re-open this bug if the unwanted behavior continues. Thanks.