[PATCH] 2.5.74 - POSIX head & tail

From: Teemu Tervo (teemu.tervo@gmx.net)
Date: Wed Jul 02 2003 - 20:36:41 EST


Despite being widely used, the 'head/tail -N' syntax isn't POSIX
compliant. This changes it to 'head/tail -n N'.

-Teemu

diff -Naur linux-2.5.74.orig/arch/mips/ramdisk/Makefile linux-2.5.74/arch/mips/ramdisk/Makefile
--- linux-2.5.74.orig/arch/mips/ramdisk/Makefile Thu Jul 3 03:25:01 2003
+++ linux-2.5.74/arch/mips/ramdisk/Makefile Thu Jul 3 03:28:34 2003
@@ -2,7 +2,7 @@
 # Makefile for a ramdisk image
 #
 
-O_FORMAT = $(shell $(OBJDUMP) -i | head -2 | grep elf32)
+O_FORMAT = $(shell $(OBJDUMP) -i | head -n 2 | grep elf32)
 img = $(CONFIG_EMBEDDED_RAMDISK_IMAGE)
 ramdisk.o: $(subst ",,$(img)) ld.script
         echo "O_FORMAT: " $(O_FORMAT)
diff -Naur linux-2.5.74.orig/arch/ppc64/boot/Makefile linux-2.5.74/arch/ppc64/boot/Makefile
--- linux-2.5.74.orig/arch/ppc64/boot/Makefile Thu Jul 3 03:25:18 2003
+++ linux-2.5.74/arch/ppc64/boot/Makefile Thu Jul 3 03:27:50 2003
@@ -118,7 +118,7 @@
         ls -l vmlinux | \
         awk '{printf "/* generated -- do not edit! */\n" \
                 "unsigned long vmlinux_filesize = %d;\n", $$5}' > $(obj)/imagesize.c
- $(CROSS_COMPILE)nm -n vmlinux | tail -1 | \
+ $(CROSS_COMPILE)nm -n vmlinux | tail -n 1 | \
         awk '{printf "unsigned long vmlinux_memsize = 0x%s;\n", substr($$1,8)}' \
>> $(obj)/imagesize.c
 
diff -Naur linux-2.5.74.orig/scripts/mkcompile_h linux-2.5.74/scripts/mkcompile_h
--- linux-2.5.74.orig/scripts/mkcompile_h Thu Jul 3 03:27:06 2003
+++ linux-2.5.74/scripts/mkcompile_h Thu Jul 3 03:27:50 2003
@@ -54,7 +54,7 @@
     echo \#define LINUX_COMPILE_DOMAIN
   fi
 
- echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -1`\"
+ echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -n 1`\"
 ) > .tmpcompile
 
 # Only replace the real compile.h if the new one is different,
diff -Naur linux-2.5.74.orig/scripts/ver_linux linux-2.5.74/scripts/ver_linux
--- linux-2.5.74.orig/scripts/ver_linux Thu Jul 3 03:27:06 2003
+++ linux-2.5.74/scripts/ver_linux Thu Jul 3 03:27:50 2003
@@ -55,7 +55,7 @@
 -e 's/\.so$//' | awk -F'[.-]' '{print "Linux C Library " \
 $(NF-2)"."$(NF-1)"."$NF}'
 
-ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -1 | awk \
+ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
 'NR==1{print "Dynamic linker (ldd) ", $NF}'
 
 ls -l /usr/lib/lib{g,stdc}++.so 2>/dev/null | awk -F. \
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Jul 07 2003 - 22:00:18 EST