Ignore:
Timestamp:
Apr 10, 2007, 5:20:09 AM (18 years ago)
Author:
bird
Message:

unixroot changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/sys-devel/autoconf/bin/autoupdate.in

    r3092 r3095  
    3131{
    3232  my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@';
     33  $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    3334  unshift @INC, $datadir;
    3435
     
    5152# Lib files.
    5253my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@';
     54$autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    5355my $autoconf = "$autom4te --language=autoconf";
    5456# We need to find m4sugar.
    5557my @prepend_include;
    56 my @include = ('@datadir@');
     58my $first_include = '@datadir@';
     59$first_include =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
     60my @include = ("$first_include");
    5761my $force = 0;
    5862# m4.
    5963my $m4 = $ENV{"M4"} || '@M4@';
     64$m4 =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    6065
    6166
Note: See TracChangeset for help on using the changeset viewer.