source: scripts/untested/autotools/blfs-autoconf.sh @ 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: 473 bytes
Line 
1#!/bin/bash
2
3DIR=`dirname ${0}`
4AUTOCONF_VERS="2.13 2.59"
5PATCHES=${DIR}/patches
6export PATCHES
7
8for AUTOCONF_VER in ${AUTOCONF_VERS}; do
9        echo ${AUTOCONF_VER}
10        export AUTOCONF_VER
11        $DIR/autoconf.sh
12done
13
14# copy wrapper script, probably should put it somewhere other than bin
15cp ${DIR}/wrappers/ac-wrapper-3.1.sh /usr/bin/ac-wrapper.sh
16
17for file in auto{conf,header,m4te,reconf,scan,update} ifnames; do
18        rm -f /usr/bin/${file}
19        ln -sfn ac-wrapper.sh /usr/bin/${file}
20done
21
Note: See TracBrowser for help on using the repository browser.