|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] [TRIVIAL] Change tail -1 to tail -n1 in build
The build of Xen currently reports (with coreutils 5.2.1):
tail: `-1' option is obsolete; use `-n 1' since this will be removed in
the future
Attached patch changes Makefile to use -n instead of deprecated syntax.
Regards,
Anthony Liguori
diff -r a83ac0806d6b xen/Makefile
--- a/xen/Makefile Fri Jul 15 13:39:50 2005
+++ b/xen/Makefile Fri Jul 15 13:58:39 2005
@@ -96,7 +96,7 @@
-e 's/@@whoami@@/$(shell whoami)/g' \
-e 's/@@domain@@/$(shell ([ -x /bin/dnsdomainname ] &&
/bin/dnsdomainname) || ([ -x /bin/domainname ] && /bin/domainname || echo
[unknown]))/g' \
-e 's/@@hostname@@/$(shell hostname)/g' \
- -e 's/@@compiler@@/$(shell $(CC) $(CFLAGS) -v 2>&1 | tail -1)/g' \
+ -e 's/@@compiler@@/$(shell $(CC) $(CFLAGS) -v 2>&1 | tail -n1)/g' \
-e 's/@@version@@/$(XEN_VERSION)/g' \
-e 's/@@subversion@@/$(XEN_SUBVERSION)/g' \
-e 's/@@extraversion@@/$(XEN_EXTRAVERSION)/g' \
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-devel] [PATCH] [TRIVIAL] Change tail -1 to tail -n1 in build,
Anthony Liguori <=
|
|
|
|
|