Whamcloud - gitweb
LU-363 don't cache BUILD for reuse
[fs/lustre-release.git] / build / lbuild-rhel6
index 9ac2a48..07cc7ea 100644 (file)
@@ -6,7 +6,8 @@
 # variable in build/lbuild-rhel and if you want to force kernel bulid for all
 # distributions, update the BUILD_GEN variable in build/lbuild)
 #BUILD_GEN+=".0"
-BUILD_GEN+=".1"                # added --with firmware to rpmbuild for rhel6
+#BUILD_GEN+=".1"               # added --with firmware to rpmbuild for rhel6
+BUILD_GEN+=".0"        # TT-107: don't cache the BUILD dir (reset major to 5)
 
 source ${0%/*}/lbuild-rhel
 
@@ -60,14 +61,7 @@ find_linux_rpm-rhel6() {
     local wanted_kernel="$2"
     local pathtorpms=${3:-"${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}/${TARGET_ARCH}"}
 
-    local tmpdir=$(mktemp -d $pathtorpms/yumXXXXXX)
-    sudo yumdownloader --destdir "$tmpdir" kernel-devel-"$wanted_kernel" > /dev/null
-    local rpm=$(cd $tmpdir; echo *)
-    mv "$tmpdir/$rpm" "$pathtorpms"
-    rmdir $tmpdir
-    echo "$rpm"
-
-    return 0
+    find_linux_rpm-rhel "$prefix" "$wanted_kernel" "$pathtorpms"
 
 }