From 180f9751608b7e24e9dff1060d3f8357d1066b8c Mon Sep 17 00:00:00 2001 From: Marius Tolzmann Date: Tue, 5 Mar 2013 12:50:52 +0100 Subject: [PATCH] beesh: Fix fatal typo in sourcesubdir_append() --- src/beesh.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beesh.sh.in b/src/beesh.sh.in index 43995bb..7a308bf 100644 --- a/src/beesh.sh.in +++ b/src/beesh.sh.in @@ -194,7 +194,7 @@ function sourcesubdir_prepend() { } function sourcesubdir_append() { - BEE_SOURCESUBDIR="${BEE_SOURCESUBDIR:+${BEE_SOURCESUBDIR}/}{$1}" + BEE_SOURCESUBDIR="${BEE_SOURCESUBDIR:+${BEE_SOURCESUBDIR}/}${1}" } #### bee_init_builddir() ######################################################