source: scripts_home/scripts/untested/autotools/blfs-autoconf.sh@ 1c9c5c3

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 1c9c5c3 was 1c9c5c3, checked in by Jim Gifford <clfs@…>, 19 years ago

r624@server (orig r622): jim | 2005-10-31 12:40:28 -0800
Rearranging Archive

  • 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.