blob: 1d2b4f34eb63836599b76a2597810055873fcbfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
# Make sure that `#' as start of word in AUTOMAKE_OPTIONS means
# comment.
. $srcdir/defs || exit 1
cat > Makefile.am << 'END'
AUTOMAKE_OPTIONS = #no such option
END
$AUTOMAKE
|