diff options
author | Mark Ferrell <major@homeonderanged.org> | 2014-04-16 09:04:21 -0700 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2014-04-16 09:04:21 -0700 |
commit | d4339125f3e9da987744c3e7db09670b5189f033 (patch) | |
tree | 6b26014772535679c1e510965d74115b2ea06fa6 | |
parent | e4181e6fdea5cae605bc19a1f4919ee1060605f6 (diff) |
Fix import() bug
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}" |