File: refresh

package info (click to toggle)
ari-yahoo 1.10-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,076 kB
  • ctags: 450
  • sloc: sh: 7,270; ansic: 5,569; makefile: 89; 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