File: bootstrap

package info (click to toggle)
asc 2.4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 75,080 kB
  • ctags: 24,943
  • sloc: cpp: 155,023; sh: 8,829; ansic: 6,890; makefile: 650; perl: 138
file content (13 lines) | stat: -rwxr-xr-x 408 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

if test "X$1" = X--force; then
   set -x
   set -e
   scripts/bootstrap.versionmerge configure.in
   
   # if there are no changes, copy the original file back so that the timestamp stays the same
   # diff configure.in configure.in~ || cp -p configure.in~ configure.in
   autoreconf -I /usr/local/share/aclocal/ 
else
   echo "You don't need to run bootstrap. Just run \"configure ; make\" "
fi