blob: 12f3bcbee9d7cbd435a26db4cf90d5db530c8f31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/bin/bash
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author: Martin Schlemmer <azarah@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/files/fix_libtool_files.sh,v 1.5 2003/03/09 03:23:08 azarah Exp $
source /etc/profile
source /sbin/functions.sh
if [ "`id -u`" -ne 0 ]
then
eerror "${0##*/}: Must be root."
exit 1
fi
usage() {
cat << "USAGE_END"
Usage: fix_libtool_files.sh <old-gcc-version>
Where <old-gcc-version> is the version number of the
previous gcc version. For example, if you updated to
gcc-3.2.1, and you had gcc-3.2 installed, run:
# fix_libtool_files.sh 3.2
USAGE_END
exit 1
}
if [ "$#" -ne 1 ]
then
usage
fi
AWKDIR="/lib/rcscripts/awk"
if [ ! -r "${AWKDIR}/fixlafiles.awk" ]
then
eerror "${0##*/}: ${AWKDIR}/fixlafiles.awk does not exist!"
exit 1
fi
einfo "Scannig libtool files for hardcoded gcc $1 library path..."
/bin/gawk -v OLDVER="$1" -f "${AWKDIR}/fixlafiles.awk"
# vim:ts=4
|