--- IO-AIO/autoconf.pm 2005/08/01 08:52:53 1.1 +++ IO-AIO/autoconf.pm 2007/01/22 15:56:03 1.4 @@ -22,10 +22,12 @@ $ENV{CPPFLAGS} = $Config{cppflags}; $ENV{CFLAGS} = $Config{ccflags}; $ENV{LDFLAGS} = $Config{ldflags}; - $ENV{LIBS} = $Config{libs}; + $ENV{LIBS} = ""; $ENV{LINKER} = $Config{ld}; # nonstandard - my $status = system $ENV{SHELL}, -c => "cd \Q$wd\E && \Q$script\E --prefix \Q$Config{prefix}\E"; + my $status = system $ENV{SHELL}, -c => "cd \Q$wd\E && \Q$script\E --prefix \Q$Config{prefixexp}\E"; + + $status } 1