File: bootstrap

package info (click to toggle)
asc 2.6.1.0-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 81,740 kB
  • sloc: cpp: 158,704; sh: 11,544; ansic: 6,736; 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