# HG changeset patch # User Anthony Liguori # 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 ;; *)