summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-03-09 14:57:53 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-03-09 14:57:53 +0000
commit5557aa074c4836b2cc9eac0e1519323df1cb876f (patch)
tree50f3197539fa6898aa7238539ea1901c1186a281
parent4eb02711e49a6aadf900d6fd9d220c17115fec2a (diff)
downloadgstreamer-common-5557aa074c4836b2cc9eac0e1519323df1cb876f.tar.gz
Original commit message from CVS: use head -n syntax
-rw-r--r--ChangeLog7
-rw-r--r--m4/ax_create_stdint_h.m42
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8f846bc..a9b0ddd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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