source: scripts/untested/autotools/blfs-autoconf.sh@ e5345f18

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since e5345f18 was d1afb9e, checked in by Jim Gifford <clfs@…>, 19 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.