]> 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>
Sat, 28 Aug 2010 02:29:31 +0000 (19:29 -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 451a0286d83490a57fc8c08d769279e8a4a3abdc..4db69aacf7b82389c28efd91832449437333bc2b 100644 (file)
@@ -3,6 +3,8 @@ openafs (1.5.75-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, 27 Aug 2010 19:15:56 -0700
index 60715162781b7fc1860935eae898a01423044a04..1de7ffa0c5b8240d71b06b602eb6b1d9d66d5c90 100644 (file)
@@ -8,9 +8,8 @@ BUILT_MODULE_NAME[0]="$PACKAGE_NAME"
 DEST_MODULE_LOCATION[0]="/updates/dkms/"
 AUTOINSTALL=yes
 
-MAKE[0]="./configure --enable-disconnected \
-        --with-linux-kernel-headers=${kernel_source_dir} \
-        --with-linux-kernel-packaging
-    && make
-    && mv src/libafs/MODLOAD-*/openafs.ko ."
-CLEAN="rm -f openafs.ko && make -C src/libafs clean"
+MAKE[0]="(./configure --enable-disconnected --with-linux-kernel-packaging \
+                      --with-linux-kernel-headers=${kernel_source_dir}
+          && make
+          && mv src/libafs/MODLOAD-*/openafs.ko .)"
+CLEAN="rm -f openafs.ko && make clean"