File: refresh

package info (click to toggle)
libyahoo 0.18.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 900 kB
  • ctags: 361
  • sloc: sh: 6,708; ansic: 4,227; makefile: 84; perl: 53
file content (27 lines) | stat: -rwxr-xr-x 529 bytes parent folder | download | duplicates (2)
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
#!/bin/sh
echo "libtoolize --force"
libtoolize --force

aclocal_flags="`./aclocal-flags`"
aclocalinclude="$ACLOCAL_FLAGS $aclocal_flags"

echo aclocal $aclocalinclude
aclocal $aclocalinclude

echo autoheader
autoheader

HASFORCE=`automake --help | grep 'force'`
case "$HASFORCE" in
*force-missing*)
	echo automake --force-missing --add-missing --copy --gnu
	automake --force-missing --add-missing --copy --gnu
	;;
*)
	echo automake --add-missing --copy --gnu
	automake --add-missing --copy --gnu
	;;
esac

echo autoconf
autoconf