solenv/bin/bin_library_info.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit a7540d9f59a172b81f075890f1835b21ec6ab7b3 Author: Michael Stahl <[email protected]> Date: Mon Jun 30 13:08:47 2014 +0200 bin_library_info.sh: popd does not take a directory parameter Change-Id: I164f03f8ab185fdb71632fd894f94b78bb3d994f (cherry picked from commit ffa354e2defcdc86d93c257159f9428e276c2d2e) diff --git a/solenv/bin/bin_library_info.sh b/solenv/bin/bin_library_info.sh index d54d6b3..bb93773 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 } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
