File: bootstrap

package info (click to toggle)
idjc 0.9.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,796 kB
  • sloc: python: 21,706; ansic: 16,528; sh: 5,639; makefile: 206; sed: 16
file content (28 lines) | stat: -rwxr-xr-x 481 bytes parent folder | download
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
28
#!/bin/sh

missing() {
	echo "$1, is missing - please install it and try again"
	exit 1
}

check() {
	for i in $* ; do
		which $i 1>/dev/null 2>/dev/null || missing $i
	done
}

# which is in the following list to prevent a false positive on autoreconf
check which autoreconf libtool autopoint magick make


echo "remaking missing files in build environment"

# Directory exists in git source only.
if [ -d docsrc ]; then
  cd docsrc
  make && make doc
  cd ..
fi

autoreconf -ifs