diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-09 14:57:53 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-09 14:57:53 +0000 |
commit | 5557aa074c4836b2cc9eac0e1519323df1cb876f (patch) | |
tree | 50f3197539fa6898aa7238539ea1901c1186a281 | |
parent | 4eb02711e49a6aadf900d6fd9d220c17115fec2a (diff) |
use head -n syntaxRELEASE-0_7_6RELEASE-0_7_0BEFORE_INDENTBRANCH-RELEASE-0_7_0
Original commit message from CVS:
use head -n syntax
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | m4/ax_create_stdint_h.m4 | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org> + + patch by: Stephane Loeuillet + + * m4/ax_create_stdint_h.m4: + use head -n instead of head - (#136500) + 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org> * 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 |