From 5557aa074c4836b2cc9eac0e1519323df1cb876f Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 9 Mar 2004 14:57:53 +0000 Subject: [PATCH] use head -n syntax Original commit message from CVS: use head -n syntax --- ChangeLog | 7 +++++++ m4/ax_create_stdint_h.m4 | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8f846bc..a9b0ddd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-09 Thomas Vander Stichele + + patch by: Stephane Loeuillet + + * m4/ax_create_stdint_h.m4: + use head -n instead of head - (#136500) + 2004-03-05 Thomas Vander Stichele * m4/gst-doc.m4: don't build PS without dvips binary diff --git a/m4/ax_create_stdint_h.m4 b/m4/ax_create_stdint_h.m4 index 775cb4c..706fc1c 100644 --- a/m4/ax_create_stdint_h.m4 +++ b/m4/ax_create_stdint_h.m4 @@ -178,7 +178,7 @@ AC_CHECK_TYPE(intmax_t,,,[#include <$ac_cv_header_stdint>]) fi # shortcircut to system "stdint.h" # ------------------ PREPARE VARIABLES ------------------------------ if test "$GCC" = "yes" ; then -ac_cv_stdint_message="using gnu compiler "`$CC --version | head -1` +ac_cv_stdint_message="using gnu compiler "`$CC --version | head -n 1` else ac_cv_stdint_message="using $CC" fi -- 2.7.4