[PATCH] 2.5.75 (repost) Fix head/tail -num

Teemu Tervo (teemu.tervo@gmx.net)
Fri, 11 Jul 2003 19:37:38 +0300


The following changes the incorrect head/tail -NUM syntax to the posix
compliant 'head/tail -n NUM'.

- Teemu

diff -Naur linux-2.5.75.orig/arch/ppc64/boot/Makefile linux-2.5.75/arch/ppc64/boot/Makefile
--- linux-2.5.75.orig/arch/ppc64/boot/Makefile Fri Jul 11 09:27:15 2003
+++ linux-2.5.75/arch/ppc64/boot/Makefile Fri Jul 11 09:33:21 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.75.orig/scripts/mkcompile_h linux-2.5.75/scripts/mkcompile_h
--- linux-2.5.75.orig/scripts/mkcompile_h Fri Jul 11 09:29:09 2003
+++ linux-2.5.75/scripts/mkcompile_h Fri Jul 11 09:33:21 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.75.orig/scripts/ver_linux linux-2.5.75/scripts/ver_linux
--- linux-2.5.75.orig/scripts/ver_linux Fri Jul 11 09:29:09 2003
+++ linux-2.5.75/scripts/ver_linux Fri Jul 11 09:33:21 2003
@@ -58,7 +58,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/