File: bootstrap

package info (click to toggle)
asc 2.6.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 82,860 kB
  • ctags: 26,395
  • sloc: cpp: 158,660; sh: 11,274; ansic: 6,878; makefile: 604; perl: 138
file content (14 lines) | stat: -rwxr-xr-x 416 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

if test "X$1" = X--force; then
   set -x
   set -e
   scripts/bootstrap.versionmerge configure.ac
   
   # 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 -fi
   #-I /usr/local/share/aclocal/ 
else
   echo "You don't need to run bootstrap. Just run \"configure ; make\" "
fi