]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
Run DKMS commands in a subshell for proper logging
authorRuss Allbery <rra@debian.org>
Wed, 11 Aug 2010 04:53:07 +0000 (21:53 -0700)
committerRuss Allbery <rra@debian.org>
Wed, 11 Aug 2010 04:53:07 +0000 (21:53 -0700)
* Run the DKMS build commands in a subshell to work around a DKMS bug
  that caused the module build logs to be discarded.  (LP: #593509)

debian/changelog
debian/openafs-modules-dkms.dkms

index 90e5c6bde1b11211d5b02f59c4da20d0da9008cf..4038918c7f9a4afd822d42607ef3ccec64f2edba 100644 (file)
@@ -7,6 +7,8 @@ openafs (1.4.12.1+dfsg-3) UNRELEASED; urgency=low
   * The openafs-fileserver init script now depends on $named since
     apparently the volserver requires DNS during startup.  Thanks, Jaap
     Winius.  (Closes: #589783)
+  * Run the DKMS build commands in a subshell to work around a DKMS bug
+    that caused the module build logs to be discarded.  (LP: #593509)
   * Add a status command to thet openafs-fileserver init script.
 
  -- Russ Allbery <rra@debian.org>  Fri, 30 Jul 2010 15:41:16 -0700
index 7e4d438ccbeac06f6efce4f8e80bb5650e855d0a..3d064c72c41458330ff85679d6ff7c420b633978 100644 (file)
@@ -8,7 +8,7 @@ BUILT_MODULE_NAME[0]="$PACKAGE_NAME"
 DEST_MODULE_LOCATION[0]="/updates/dkms/"
 AUTOINSTALL=yes
 
-MAKE[0]="./configure --with-linux-kernel-headers=${kernel_source_dir}
-    && make
-    && mv src/libafs/MODLOAD-*/openafs.ko ."
+MAKE[0]="(./configure --with-linux-kernel-headers=${kernel_source_dir}
+          && make
+          && mv src/libafs/MODLOAD-*/openafs.ko .)"
 CLEAN="rm -f openafs.ko && make -C src/libafs clean"