source: scripts/untested/autotools/patches/automake-1.5-slot.patch @ d1afb9e

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d1afb9e was d1afb9e, checked in by Jim Gifford <clfs@…>, 18 years ago

r587@server (orig r585): ryan | 2005-08-05 21:51:35 -0700
Add a sane autotools build to the mix.
Blatantly stolen from gentoo...



  • Property mode set to 100644
File size: 1.2 KB
  • automake-1.5/aclocal.in

    old new  
    3333$prefix = "@prefix@";
    3434# Note that this isn't pkgdatadir, but a separate directory.
    35 $acdir = "@datadir@/aclocal";
     35$acdir = "@datadir@/aclocal-1.5";
    3636
    3737# Some globals.
     
    116116
    117117local (@dirlist) = &parse_arguments (@ARGV);
     118push (@dirlist, "/usr/share/aclocal") if (!grep(/^--acdir/, @ARGV));
    118119&scan_m4_files (@dirlist);
    119120&scan_configure;
     
    203204    if ($print_and_exit)
    204205    {
    205         print $acdir, "\n";
     206        print "/usr/share/aclocal", "\n";
    206207        exit 0;
    207208    }
  • automake-1.5/automake.in

    old new  
    3232BEGIN
    3333{
    3434  my $prefix = "@prefix@";
    35   my $perllibdir = $ENV{'perllibdir'} || "@datadir@/@PACKAGE@";
     35  my $perllibdir = $ENV{'perllibdir'} || "@datadir@/@PACKAGE@-1.5";
    3636  unshift @INC, "$perllibdir";
    3737}
    3838
     
    127127my $VERSION = "@VERSION@";
    128128my $PACKAGE = "@PACKAGE@";
    129129my $prefix = "@prefix@";
    130 my $libdir = "@datadir@/@PACKAGE@";
     130my $libdir = "@datadir@/@PACKAGE@-1.5";
    131131
    132132# String constants.
    133133my $IGNORE_PATTERN = '^\s*##([^#\n].*)?\n';
Note: See TracBrowser for help on using the repository browser.