diff options
author | Michael Adam <obnox@samba.org> | 2009-02-10 23:31:52 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-02-11 00:29:16 +0100 |
commit | e374bef8fc212722af289cf6540f8ae3392661a8 (patch) | |
tree | 853e97af71a86da232ee2e9b78e386e91862f492 /packaging/bin/fill-templates | |
parent | 97cbf86e7993449d8299c9c1accb4dca3f44cb0c (diff) | |
download | samba-e374bef8fc212722af289cf6540f8ae3392661a8.tar.gz samba-e374bef8fc212722af289cf6540f8ae3392661a8.tar.bz2 samba-e374bef8fc212722af289cf6540f8ae3392661a8.zip |
packaging: don't clutter the output of fillup-templates with popd output
Michael
Diffstat (limited to 'packaging/bin/fill-templates')
-rwxr-xr-x | packaging/bin/fill-templates | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/bin/fill-templates b/packaging/bin/fill-templates index 90527b8872..e74020fb69 100755 --- a/packaging/bin/fill-templates +++ b/packaging/bin/fill-templates @@ -17,9 +17,9 @@ TOPDIR=${DIRNAME}/../../ SRCDIR=${TOPDIR}/source3 VERSION_H=${SRCDIR}/include/version.h -pushd ${SRCDIR} +pushd ${SRCDIR} > /dev/null 2>&1 ./script/mkversion.sh -popd +popd > /dev/null 2>&1 if [ ! -f ${VERSION_H} ] ; then echo "Error creating version.h" |