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/autoscan.in

    r3092 r3095  
    3030{
    3131  my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@';
     32  $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    3233  unshift @INC, $datadir;
    3334
     
    9697# Autoconf and lib files.
    9798my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@';
     99$autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    98100my $autoconf = "$autom4te --language=autoconf";
    99101my @prepend_include;
    100 my @include = ('@datadir@');
     102my $first_include = '@datadir@';
     103$first_include =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
     104my @include = ("$first_include");
    101105
    102106# $help
Note: See TracChangeset for help on using the changeset viewer.