From: Jean-Paul Saman Date: Wed, 13 Jun 2007 08:37:51 +0000 (+0000) Subject: Portability fix: use head -n 1 iso head -1 X-Git-Tag: 0.9.0-test0~7053 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=bfa762d4a93c5aff31f97b3b405e1469e0fd0374;p=vlc Portability fix: use head -n 1 iso head -1 --- diff --git a/bootstrap b/bootstrap index 841c31bc6c..4fcb42bdf7 100755 --- a/bootstrap +++ b/bootstrap @@ -64,7 +64,7 @@ fi # Check for autoconf rm -f m4/autoconf260.m4 -case "$(autoconf --version|head -1)" in +case "$(autoconf --version|head -n 1)" in *2.5[012345678]*) echo "Hey, your autoconf is quite old. Update it." >&2 exit 1