* [PATCH] [TRIVIAL] Change tail -1 to tail -n1 in build
@ 2005-07-15 19:00 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2005-07-15 19:00 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 244 bytes --]
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
[-- Attachment #2: tail.diff --]
[-- Type: text/x-patch, Size: 679 bytes --]
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' \
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-07-15 19:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-15 19:00 [PATCH] [TRIVIAL] Change tail -1 to tail -n1 in build Anthony Liguori
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.