Changeset 3095 for trunk/essentials/sys-devel/autoconf/bin/autoupdate.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/autoupdate.in
r3092 r3095 31 31 { 32 32 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 33 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 33 34 unshift @INC, $datadir; 34 35 … … 51 52 # Lib files. 52 53 my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@'; 54 $autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 53 55 my $autoconf = "$autom4te --language=autoconf"; 54 56 # We need to find m4sugar. 55 57 my @prepend_include; 56 my @include = ('@datadir@'); 58 my $first_include = '@datadir@'; 59 $first_include =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 60 my @include = ("$first_include"); 57 61 my $force = 0; 58 62 # m4. 59 63 my $m4 = $ENV{"M4"} || '@M4@'; 64 $m4 =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 60 65 61 66
Note:
See TracChangeset
for help on using the changeset viewer.