|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] Allow install.sh to run from read-only file system
Make the check script log to /tmp instead of the working directory. This
allows us to install from a read-only file system (such as a cdrom).
Signed-off-by: Anthony Liguori <aliguori@xxxxxxxxxx>
Regards,
Anthony Liguori
# HG changeset patch
# User Anthony Liguori <anthony@xxxxxxxxxxxxx>
# Node ID feba468a5e51874367aac4d8ab767bfa45a8f4b4
# Parent 592b1acd3bac146ec31c06dc0ea16ab20b9faf43
Make the check script log to /tmp instead of the working directory. This
allows us to install from a read-only file system (such as a cdrom).
diff -r 592b1acd3bac -r feba468a5e51 tools/check/chk
--- a/tools/check/chk Thu Sep 1 23:27:02 2005
+++ b/tools/check/chk Fri Sep 2 01:01:23 2005
@@ -17,14 +17,14 @@
case $1 in
build)
check="CHECK-BUILD"
- info=".chkbuild"
+ info="/tmp/xen.chkbuild"
;;
install)
check="CHECK-INSTALL"
- info=".chkinstall"
+ info="/tmp/xen.chkinstall"
;;
clean)
- rm -f .chkbuild .chkinstall
+ rm -f /tmp/xen.chkbuild /tmp/xen.chkinstall
exit 0
;;
*)
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-devel] [PATCH] Allow install.sh to run from read-only file system,
Anthony Liguori <=
|
|
|
|
|