diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-22 00:40:08 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-22 00:40:08 (EST) |
commit | 6f58506752e09351d006699bd07d650e09fd4b60 (patch) | |
tree | 27f3e4e06d428afa7722123733a71dea80cfd706 /lib | |
parent | a90ff196927570003b172f99da7af55fc1e916e7 (diff) |
libopkbuild: Change output file extension to .sho
Diffstat (limited to 'lib')
-rw-r--r-- | lib/load.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/load.sh b/lib/load.sh index 9f52766..e0fe366 100644 --- a/lib/load.sh +++ b/lib/load.sh @@ -22,7 +22,7 @@ _OB_LOAD_SM=1 # The "common" module is used by this and all other modules. # We have to manually load the "common" module so we can use it in ob_use. -. "${PKGLIBDIR}/common.sm" +. "${PKGLIBDIR}/common.sho" ob_use() { @@ -34,7 +34,7 @@ ob_use() return 125 fi - module="${PKGLIBDIR}/${module}.sm" + module="${PKGLIBDIR}/${module}.sho" if [ -r "${module}" ]; then . "${module}" else |