aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Ferrell <major@homeonderanged.org>2014-04-16 09:04:21 -0700
committerMark Ferrell <major@homeonderanged.org>2014-04-16 09:04:21 -0700
commitd4339125f3e9da987744c3e7db09670b5189f033 (patch)
tree6b26014772535679c1e510965d74115b2ea06fa6
parente4181e6fdea5cae605bc19a1f4919ee1060605f6 (diff)
Fix import() bug
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index 5ff7031..45644f1 100755
--- a/build
+++ b/build
@@ -79,7 +79,7 @@ import()
test -f "${BUILDER_LIBDIR}/${1}" || die "library does not exist '${1}'"
eval "test -z \"\${BUILDER_IMPORT_${2}}\"" || return
BUILDER_CALL_STASH="${BUILDER_CALL_STACK}"
- BUILDER_CALL_STACK="${BUILDER_CALL_STACK} ${1}" . "${BUILDER_CALL_LIBDIR}/${1}"
+ BUILDER_CALL_STACK="${BUILDER_CALL_STACK} ${1}" . "${BUILDER_LIBDIR}/${1}"
eval "BUILDER_IMPORT_${2}='${BUILDER_LIBDIR}/${1}'"
if [ -z "${BUILDER_IMPORTED}" ]; then
BUILDER_IMPORTED="${1}"