Changeset 3095 for trunk/essentials/sys-devel/autoconf/bin/autoscan.in
- Timestamp:
- Apr 10, 2007, 5:20:09 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/sys-devel/autoconf/bin/autoscan.in
r3092 r3095 30 30 { 31 31 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 32 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 32 33 unshift @INC, $datadir; 33 34 … … 96 97 # Autoconf and lib files. 97 98 my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@'; 99 $autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 98 100 my $autoconf = "$autom4te --language=autoconf"; 99 101 my @prepend_include; 100 my @include = ('@datadir@'); 102 my $first_include = '@datadir@'; 103 $first_include =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 104 my @include = ("$first_include"); 101 105 102 106 # $help
Note:
See TracChangeset
for help on using the changeset viewer.