bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #5274] path to guile in Greg configure script


From: nobody
Subject: [bug #5274] path to guile in Greg configure script
Date: Sun, 14 Sep 2003 04:34:02 -0400
User-agent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.3a) Gecko/20030131 Phoenix/0.5

=================== 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/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]