Tag
Hash :
1abde795
Author :
Date :
2002-03-11T17:11:42
tests/acsubst.test: New test, by Alexandre Duret-Lutz tests/acsubst2.test: New test, by Alexandre Duret-Lutz Forgot to cvs add these before the previous commit.
#! /bin/sh
. $srcdir/defs || exit 1
set -e
cat >> configure.in << 'END'
AC_PROG_CC
AC_SUBST([FOOBAR_LDFLAGS],[blablabla])
END
cat > Makefile.am << 'END'
bin_PROGRAMS = mumble
mumble_SOURCES = a.c b.c d.h
mumble_LDFLAGS = $(FOOBAR_LDFLAGS)
END
$ACLOCAL
$AUTOMAKE -a