=================== BUG #5274: FULL BUG SNAPSHOT =================== http://savannah.gnu.org/bugs/?func=detailbug&bug_id=5274&group_id=99
Submitted by: ratmice Project: GNUstep Submitted on: Sun 09/14/2003 at 08:34 Category: Libraries Severity: 5 - Major Bug Group: None Resolution: None Assigned to: None Status: Open Summary: path to guile in Greg configure script Original Submission: the configure script in dev-libs/guile/Greg has a bug in it, where it calls AC_PROG_PATH(GUILEPATH,guile,NONE,$PATH:$with_guile_path) this generated some code in the configure script to do for as_dir in $PATH:$with_guile_path do .... what happens there is :$with_guile_path gets appended to the last part of the path in $PATH and it'll look for a directory like /last/path: without --with-guile-path passed or /last/path:/guile/path with either way if guile path is passed onto the command line or only exists in the last directory in the path it returns NONE... additionally the error says configure with --with-guile-path set to the correct path (e.g. configure --with-guile-path=/usr/bin/guile) this should probably change to --with-guile-path=/usr/bin regenerating the configure script here fixed the issue using autoconf 2.57 generating some correct code like.. as_dummy="$PATH:$with_guile_path" for as_dir in $as_dummy do ... No Followups Have Been Posted CC list is empty No files currently attached For detailed info, follow this link: http://savannah.gnu.org/bugs/?func=detailbug&bug_id=5274&group_id=99 _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ _______________________________________________ Bug-gnustep mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-gnustep