TIVI-153: Adding automake14 as dep for iputils package
[profile/ivi/automake14.git] / tests / aclocalii.test
1 #! /bin/sh
2
3 # Test to make sure include of include detects missing macros
4 . $srcdir/defs || exit 1
5
6 echo GNOME_X_CHECKS >> configure.in
7
8 mkdir macros
9
10 cat > macros/gnome.m4 << 'END'
11 AC_DEFUN([GNOME_X_CHECKS], [
12         AM_PATH_GTK(0.99.5,,AC_MSG_ERROR(GTK not installed, or gtk-config not in path))
13 ])
14 END
15
16 $ACLOCAL -I macros && exit 1
17 exit 0