File: bootstrap

package info (click to toggle)
libunibreak 6.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,592 kB
  • sloc: ansic: 14,084; python: 242; makefile: 136; sh: 43; sed: 2
file content (10 lines) | stat: -rwxr-xr-x 402 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

mkdir -p m4

echo "Running aclocal..." ; aclocal -I m4 || exit 1
echo "Running autoheader..." ; autoheader || exit 1
echo "Running autoconf..." ; autoconf || exit 1
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --copy --automake) || exit 1
echo "Running automake..." ; automake --add-missing --copy || exit 1
echo "Running autoreconf..." ; autoreconf || exit 1