mirror of https://github.com/GNOME/gimp.git
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:
parent
ff9c90ac37
commit
45c9e43fa1
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue