From 158826787c199f7e107a44ab06a8a5c66229ce23 Mon Sep 17 00:00:00 2001 From: Marius Tolzmann Date: Wed, 22 Aug 2012 12:23:12 +0200 Subject: [PATCH] beesh: Create temporary inventory (.bc) in DESTDIR was: create file in current dir which is actually DESTDIR (${D}). this change makes the code more readable. --- src/beesh.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/beesh.sh.in b/src/beesh.sh.in index e18f25b..a8ce047 100644 --- a/src/beesh.sh.in +++ b/src/beesh.sh.in @@ -939,7 +939,7 @@ function bee_check_conflicts() { ${BEE_LIBEXECDIR}/bee/bee-cache-inventory CONTENT \ --prepend "${PKGALLPKG} " \ | sort -r -u -k8 -k1 \ - > ${PKGALLPKG}.bc + > ${D}${PKGALLPKG}.bc last="" while read p f ; do @@ -949,7 +949,7 @@ function bee_check_conflicts() { fi print_info "${COLOR_NORMAL} $f" done < <(bee-cache print-conflicts ${PKGALLPKG} \ - --tmpinstall ${PKGALLPKG}.bc \ + --tmpinstall ${D}${PKGALLPKG}.bc \ -f1,8- | sort -k1 -u ) }