[cairo-commit] cairo ChangeLog,1.282,1.283 autogen.sh,1.8,1.9

Carl Worth commit at pdx.freedesktop.org
Tue Dec 21 12:57:37 PST 2004


Committed by: cworth

Update of /cvs/cairo/cairo
In directory gabe:/tmp/cvs-serv27401

Modified Files:
	ChangeLog autogen.sh 
Log Message:

        * autogen.sh (LANG): Change "head -1" to more standard "head -n
        1".


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.282
retrieving revision 1.283
diff -u -d -r1.282 -r1.283
--- ChangeLog	20 Dec 2004 20:22:50 -0000	1.282
+++ ChangeLog	21 Dec 2004 20:57:33 -0000	1.283
@@ -1,3 +1,8 @@
+2004-12-20  Carl Worth  <cworth at cworth.org>
+
+	* autogen.sh (LANG): Change "head -1" to more standard "head -n
+	1".
+
 2004-12-20  Alexander Larsson  <alexl at redhat.com>
 
 	* src/cairo_xlib_surface.c (_cairo_xlib_surface_create_with_size):

Index: autogen.sh
===================================================================
RCS file: /cvs/cairo/cairo/autogen.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- autogen.sh	13 Oct 2004 15:18:38 -0000	1.8
+++ autogen.sh	21 Dec 2004 20:57:33 -0000	1.9
@@ -26,7 +26,7 @@
 ARGV0=$0
 
 if ($AUTOCONF --version) < /dev/null > /dev/null 2>&1 ; then
-    if ($AUTOCONF --version | head -1 | awk 'NR==1 { if( $(NF) >= '$autoconf_min_vers') \
+    if ($AUTOCONF --version | head -n 1 | awk 'NR==1 { if( $(NF) >= '$autoconf_min_vers') \
 			       exit 1; exit 0; }');
     then
        echo "$ARGV0: ERROR: \`$AUTOCONF' is too old."
@@ -43,7 +43,7 @@
 fi
 
 if ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 ; then
-  if ($AUTOMAKE --version | head -1 | awk 'NR==1 { if( $(NF) >= '$automake_min_vers') \
+  if ($AUTOMAKE --version | head -n 1 | awk 'NR==1 { if( $(NF) >= '$automake_min_vers') \
 			     exit 1; exit 0; }');
      then
      echo "$ARGV0: ERROR: \`$AUTOMAKE' is too old."
@@ -52,7 +52,7 @@
      DIE="yes"
   fi
   if ($ACLOCAL --version) < /dev/null > /dev/null 2>&1; then
-    if ($ACLOCAL --version | head -1 | awk 'NR==1 { if( $(NF) >= '$aclocal_min_vers' ) \
+    if ($ACLOCAL --version | head -n 1 | awk 'NR==1 { if( $(NF) >= '$aclocal_min_vers' ) \
 						exit 1; exit 0; }' );
     then
       echo "$ARGV0: ERROR: \`$ACLOCAL' is too old."




More information about the cairo-commit mailing list