From 2dac96b5151b2d864a15e1bc594918bc3f3ee1bb Mon Sep 17 00:00:00 2001 From: Marius Tolzmann Date: Tue, 25 Sep 2012 12:53:14 +0200 Subject: [PATCH] beesh: Fix naming bee-files in BEEDIR Introduced with 3aaed0d02571d3615ab466802d0067a7cbb8cb0f and 61fba008669462947d2a36a24ac352a3c76d00d0 bee-files are named after PKGALLPKG, which is wrong. The correct name is BEE_BEEDIR/PKGFULLPKG.bee This is fixed now. --- 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..7e293f0 100644 --- a/src/beesh.sh.in +++ b/src/beesh.sh.in @@ -534,7 +534,7 @@ function bee_pkg_pack() { ${D}/CONTENT ) beefilename=${BEE##*/} - beefiledest=${BEE_BEEDIR}/${PKGALLPKG}.bee + beefiledest=${BEE_BEEDIR}/${PKGFULLPKG}.bee print_info "-> saving bee-file ${beefilename} .." print_info "${COLOR_CYAN}${beefiledest}" @@ -569,7 +569,7 @@ function bee_archivebuild() { --absolute-names \ ${S} ${B} \ ${bee_FETCHED_FILES[@]} \ - ${BEE_BEEDIR}/${PKGALLPKG}.bee \ + ${BEE_BEEDIR}/${PKGFULLPKG}.bee \ --transform="s,^${BEEWORKDIR},${PKGALLPKG}," \ --transform="s,^${F},${PKGALLPKG}/files," \ --transform="s,^${BEE_BEEDIR},${PKGALLPKG}/files,"