s/head -1/head -n 1/ (spotted by brix).

2006-01-31  Michael Natterer  <mitch@gimp.org>

	* autogen.sh: s/head -1/head -n 1/ (spotted by brix).
This commit is contained in:
Michael Natterer 2006-01-31 09:35:51 +00:00 committed by Michael Natterer
parent ff9c90ac37
commit 45c9e43fa1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-01-31 Michael Natterer <mitch@gimp.org>
* autogen.sh: s/head -1/head -n 1/ (spotted by brix).
2006-01-30 Akkana Peck <akkana@cvs.gnome.org>
* configure.in: don't report yes for xjt if on Windows.

View File

@ -113,7 +113,7 @@ fi
echo -n "checking for autoconf >= $AUTOCONF_REQUIRED_VERSION ... "
if ($AUTOCONF --version) < /dev/null > /dev/null 2>&1; then
VER=`$AUTOCONF --version | head -1 \
VER=`$AUTOCONF --version | head -n 1 \
| grep -iw autoconf | sed "s/.* \([0-9.]*\)[-a-z0-9]*$/\1/"`
check_version $VER $AUTOCONF_REQUIRED_VERSION
else