File: acsilent.test

package info (click to toggle)
automake 1%3A1.4-p4-1.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,312 kB
  • ctags: 21
  • sloc: perl: 5,516; sh: 5,218; ansic: 404; makefile: 196
file content (19 lines) | stat: -rwxr-xr-x 383 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

# Test to make sure there are no spurious acinclude warnings.

. $srcdir/defs || exit 1

echo AM_INIT_GUILE_MODULE > configure.in

cat > acinclude.m4 << 'END'
AC_DEFUN([AM_INIT_GUILE_MODULE],[
. $srcdir/../GUILE-VERSION
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
AC_CONFIG_AUX_DIR(..)
module=[$1]
AC_SUBST(module)])
END

$ACLOCAL > output 2>&1 || exit 1
test -z "`cat output`"