Contents of /smage/trunk/include/gnuconfig.sminc
Parent Directory | Revision Log
Revision 2792 -
(show annotations)
(download)
Mon Aug 29 20:03:18 2011 UTC (13 years, 2 months ago) by niro
File size: 627 byte(s)
Mon Aug 29 20:03:18 2011 UTC (13 years, 2 months ago) by niro
File size: 627 byte(s)
-merged branch alx-0_6_0 into trunk
1 | # update config.guess and config.sub |
2 | |
3 | # grab them at: |
4 | # http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub |
5 | # http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess |
6 | |
7 | gnuconfig-update() |
8 | { |
9 | local srcdir |
10 | |
11 | srcdir="${SRCDIR}" |
12 | [ -n "$1" ] && srcdir="$1" |
13 | |
14 | echo -e "${COLBLUE}*** ${COLGREEN}Updating config.{sub,guess} in ${srcdir}${COLDEFAULT}" |
15 | find ${srcdir} -name config.sub -exec \ |
16 | install -m0755 ${SMAGESCRIPTSDIR}/include/gnuconfig/config.sub '{}' ';' || return 1 |
17 | |
18 | find ${srcdir} -name config.guess -exec \ |
19 | install -m0644 ${SMAGESCRIPTSDIR}/include/gnuconfig/config.guess '{}' ';' || return 1 |
20 | } |