chiark / gitweb /
* Truncate files when writing them (copyup, copydown, etc) (!)
authorIan Jackson <ian@anarres>
Thu, 17 May 2007 13:35:27 +0000 (14:35 +0100)
committerIan Jackson <ian@anarres>
Thu, 17 May 2007 13:35:27 +0000 (14:35 +0100)
* Remove spurious \ from `do not know how to handle filename' message.
* Reset signal handlers in VirtSubproc cleanup.

debian/changelog
xen/readconfig.in

index f57300c1a88ba12a5b874deee501a95d7c7aac40..1b55a69a4473f982bd82cc44bddc8e0857b5dd5b 100644 (file)
@@ -1,4 +1,13 @@
-autopkgtest (0.8.1feisty1~iwj2) feisty-updates; urgency=low
+autopkgtest (0.8.2feisty1~iwj) feisty-updates; urgency=low
+
+  * Fix readconfig.in to set adt_$var rather than just $var.
+  * Truncate files when writing them (copyup, copydown, etc) (!)
+  * Remove spurious \ from `do not know how to handle filename' message.
+  * Reset signal handlers in VirtSubproc cleanup.
+
+ --
+
+autopkgtest (0.8.2) gutsy unstable; urgency=low
 
   * Fix fd handling to work around Python's habit of closing files
     you specify in subprocess.Popen.
index b9582935d7b86474093cf197d7373a8853b0eb05..cbd3e85be4a6a6c02a9493e18667a3413dfac9b8 100644 (file)
@@ -67,7 +67,7 @@ cmdline_args () {
                        *) fail "unknown configuration variable \`$var'" ;;
                        esac
 
-                       eval "$var=\"\$value\""
+                       eval "adt_$var=\"\$value\""
                        shift ;;
 
                --)     shift; break ;;