File: autogen.sh

package info (click to toggle)
bacula 9.6.7-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 24,764 kB
  • sloc: ansic: 157,001; cpp: 28,065; sh: 25,044; makefile: 4,385; perl: 3,433; sql: 1,371; python: 125; xml: 64; awk: 51; sed: 25
file content (21 lines) | stat: -rwxr-xr-x 440 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

(aclocal --version) < /dev/null > /dev/null 2>&1 || {
  echo
  echo "** Error **: You must have aclocal installed."
  echo
  exit 1
}

(autoconf --version) < /dev/null > /dev/null 2>&1 || {
  echo
  echo "** Error **: You must have autoconf installed."
  echo
  exit 1
}

echo aclocal
(cd autoconf; aclocal -I bacula-macros/ -I gettext-macros/ -I libtool/)
echo autoconf
autoconf -I autoconf/ -o configure autoconf/configure.in