Changeset 3095 for trunk


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

unixroot changes.

Location:
trunk/essentials/sys-devel/autoconf/bin
Files:
6 edited

Legend:

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

    r3092 r3095  
    3232{
    3333  my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@';
     34  $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    3435  unshift @INC, "$datadir";
    3536
     
    5455# Lib files.
    5556my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@';
     57$autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    5658local $config_h;
    5759my $config_h_in;
  • trunk/essentials/sys-devel/autoconf/bin/autom4te.in

    r3092 r3095  
    2828{
    2929  my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@';
     30  $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    3031  unshift @INC, $datadir;
    3132
     
    4849# Data directory.
    4950my $datadir = $ENV{'AC_MACRODIR'} || '@datadir@';
     51$datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    5052
    5153# $LANGUAGE{LANGUAGE} -- Automatic options for LANGUAGE.
     
    8991# $M4.
    9092my $m4 = $ENV{"M4"} || '@M4@';
     93$m4 =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    9194# Some non-GNU m4's don't reject the --help option, so give them /dev/null.
    9295fatal "need GNU m4 1.4 or later: $m4"
  • trunk/essentials/sys-devel/autoconf/bin/autoreconf.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
     
    108109# Lib files.
    109110my $autoconf   = $ENV{'AUTOCONF'}   || '@bindir@/@autoconf-name@';
     111$autoconf =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    110112my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
     113$autoheader =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    111114my $automake   = $ENV{'AUTOMAKE'}   || 'automake';
     115$automake =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    112116my $aclocal    = $ENV{'ACLOCAL'}    || 'aclocal';
     117$aclocal =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    113118my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
     119$libtoolize =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    114120my $autopoint  = $ENV{'AUTOPOINT'}  || 'autopoint';
     121$autopoint =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    115122
    116123# --install -- as --add-missing in other tools.
  • 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
  • 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
  • trunk/essentials/sys-devel/autoconf/bin/ifnames.in

    r3092 r3095  
    3535{
    3636  my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@';
     37  $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
    3738  unshift @INC, $datadir;
    3839
Note: See TracChangeset for help on using the changeset viewer.