File: autogen.sh

package info (click to toggle)
libsdl2 2.0.2%2Bdfsg1-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 56,668 kB
  • ctags: 20,701
  • sloc: ansic: 136,999; sh: 11,033; objc: 3,877; cpp: 2,385; perl: 1,094; makefile: 431; python: 51
file content (12 lines) | stat: -rwxr-xr-x 308 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# Regenerate configuration files
cp acinclude.m4 aclocal.m4
found=false
for autoconf in autoconf autoconf259 autoconf-2.59
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
done
if test x$found = xfalse; then
    echo "Couldn't find autoconf, aborting"
    exit 1
fi