Fix minkernpackage breakage regarding the TEMP and TMPDIR variable
authorEric Edgar <rocket@gentoo.org>
Wed, 20 Jul 2005 22:23:23 +0000 (22:23 +0000)
committerEric Edgar <rocket@gentoo.org>
Wed, 20 Jul 2005 22:23:23 +0000 (22:23 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@277 67a159dc-881f-0410-a524-ba9dfbe2cb84

gen_package.sh

index fcda6229f21d96271a14623e7805473342e92fbc..1386b3213a0d6b00520d146fb4df427885fcfb51 100644 (file)
@@ -16,9 +16,9 @@ gen_minkernpackage()
        fi
        if [ "${KERN_24}" != '1' -a  "${CMD_BOOTSPLASH}" != '1' ]
        then
-               [ "${BUILD_INITRD}" -ne 0 ] && { cp "${TEMP}/initramfs-${KV}" "${TEMP}/minkernpackage/initramfs-${ARCH}-${KV}" || gen_die 'Could not copy the initramfs for the kernel package!'; }
+               [ "${BUILD_INITRD}" -ne 0 ] && { cp "${TMPDIR}/initramfs-${KV}" "${TEMP}/minkernpackage/initramfs-${ARCH}-${KV}" || gen_die 'Could not copy the initramfs for the kernel package!'; }
        else
-               [ "${BUILD_INITRD}" -ne 0 ] && { cp "${TEMP}/initrd-${KV}" "${TEMP}/minkernpackage/initrd-${ARCH}-${KV}" || gen_die 'Could not copy the initrd for the kernel package!'; }
+               [ "${BUILD_INITRD}" -ne 0 ] && { cp "${TMPDIR}/initrd-${KV}" "${TEMP}/minkernpackage/initrd-${ARCH}-${KV}" || gen_die 'Could not copy the initrd for the kernel package!'; }
        fi
        cd "${TEMP}/minkernpackage" 
        /bin/tar -jcpf ${MINKERNPACKAGE} * || gen_die 'Could not compress the kernel package!'