[go: up one dir, main page]

Menu

[ee8051]: / src / autogen.sh  Maximize  Restore  History

Download this file

28 lines (23 with data), 714 Bytes

 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
#! /bin/sh
## Generate ./configure
rm -f configure.in
echo "dnl --- DO NOT EDIT --- Automatically generated by autogen.sh" > configure.in
cat configure.base >> configure.in
cat <<EOF >> configure.in
AC_OUTPUT(\$CONFIGURE_OUTPUTS)
dnl XXX FIXME XXX chmod is not in autoconf's list of portable functions
echo " "
echo " \"\\\$prefix\" is \$prefix"
echo " \"\\\$exec_prefix\" is \$exec_prefix"
AC_MSG_RESULT([\$STATUS_MSG
find . -name NOINSTALL -print # shows which toolboxes won't be installed
])
EOF
autoconf configure.in > configure.tmp
if diff configure.tmp configure >& /dev/null; then
rm -f configure.tmp;
else
mv -f configure.tmp configure
chmod 0755 configure
fi
rm -f configure.in