BIND 10 trac1194, updated. 1107b46ec39da9cdac19af44ba79ae5ee8722025 [1194] fix shell redirection
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Oct 31 15:39:15 UTC 2011
The branch, trac1194 has been updated
via 1107b46ec39da9cdac19af44ba79ae5ee8722025 (commit)
from ed04555e46292f9d573372b07000384b6f0118af (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1107b46ec39da9cdac19af44ba79ae5ee8722025
Author: reed <reed at new-host.(none)>
Date: Mon Oct 31 10:38:30 2011 -0500
[1194] fix shell redirection
The shorthand is not portable (resulting in illegal or bad file
descriptor).
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 43f9144..973c0da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -481,7 +481,7 @@ BOTAN_INCLUDES=`${BOTAN_CONFIG} --cflags`
# this is not always the case. As a heuristics workaround we add
# -L`botan-config --prefix/lib` in this case. Same for BOTAN_INCLUDES
# (but using include instead of lib) below.
-if [ $BOTAN_CONFIG --prefix >& /dev/null ] ; then
+if [ $BOTAN_CONFIG --prefix >/dev/null 2>&1 ] ; then
echo ${BOTAN_LDFLAGS} | grep -- -L > /dev/null || \
BOTAN_LDFLAGS="-L`${BOTAN_CONFIG} --prefix`/lib ${BOTAN_LDFLAGS}"
echo ${BOTAN_INCLUDES} | grep -- -I > /dev/null || \
More information about the bind10-changes
mailing list