[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] A minor change to Makefile
Jiang, Yunhong wrote: > - [ -d $(D)/etc/xen ] && mv -f $(D)/etc/xen > $(D)/etc/xen.old-$(date +%s) > + -[ -d $(D)/etc/xen ] && mv -f $(D)/etc/xen > $(D)/etc/xen.old-$(shell date +%s) Not the right change. Use [ -d $(D)/etc/xen ] && mv -f $(D)/etc/xen $(D)/etc/xen.old-$$(date +%s) make needs the sub-shell command to be escaped (two $). -- â Ulrich Drepper â Red Hat, Inc. â 444 Castro St â Mountain View, CA â Attachment:
signature.asc _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |