File: bootstrap

package info (click to toggle)
pupnp 1%3A1.14.20-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,440 kB
  • sloc: ansic: 34,488; xml: 1,173; cpp: 573; makefile: 341; sh: 130; python: 51; javascript: 7
file content (15 lines) | stat: -rwxr-xr-x 233 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

rm -fr autom4te.cache

# Equivalent to 
#	aclocal 
#	autoheader 
#	automake --add-missing --copy
#	autoconf

autoreconf --force --install -Wall -Wno-obsolete $* || exit 1

echo "Now run ./configure and then make."
exit 0