summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-06-30 13:08:47 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2014-06-30 14:56:26 +0200
commitc60ec3b1f07d12f179553732b7b70f75be1474a5 (patch)
treec6b310d2fcb9d3e048a6307cdb281210cfeae5eb
parent51300d1dc8c3d59757db7944eb7a1a1704c3b1df (diff)
bin_library_info.sh: popd does not take a directory parameter
Change-Id: I164f03f8ab185fdb71632fd894f94b78bb3d994f
-rwxr-xr-xsolenv/bin/bin_library_info.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/bin_library_info.sh b/solenv/bin/bin_library_info.sh
index d54d6b3d2f82..bb93773492d7 100755
--- a/solenv/bin/bin_library_info.sh
+++ b/solenv/bin/bin_library_info.sh
@@ -35,7 +35,7 @@ get_config_sha()
{
pushd ${SRCDIR?} > /dev/null
cat ${BUILDDIR?}/config_host.mk | git hash-object --stdin
- popd ${SRCDIR?} > /dev/null
+ popd > /dev/null
}
get_library_gbuild_sha()
@@ -48,7 +48,7 @@ get_library_gbuild_sha()
else
git ls-tree -d HEAD | "{module?}" | cut -f 1 | cut -d " " -f 3
fi
- popd ${SRCDIR?} > /dev/null
+ popd > /dev/null
}