summaryrefslogtreecommitdiff
path: root/configure.static.in
diff options
context:
space:
mode:
authorpfaedit <pfaedit>2008-12-24 21:17:33 +0000
committerpfaedit <pfaedit>2008-12-24 21:17:33 +0000
commit148ad229b318233e032f840320905cbd2bc1b4f8 (patch)
tree91a85a3c03bff89fa66972f6f928c19e915ea516 /configure.static.in
parent2fba963f47efec4f51f93b885e25e29e3b1d82f5 (diff)
Oops. I was using csh redirect syntax in configure (>&/dev/null rather than >/dev/null 2>&1)
Diffstat (limited to 'configure.static.in')
-rw-r--r--configure.static.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.static.in b/configure.static.in
index 100aee70..8145301b 100644
--- a/configure.static.in
+++ b/configure.static.in
@@ -333,9 +333,9 @@ if test "$gww_checkpango" = "yes" ; then
LDFLAGS="$LDFLAGS $pan_libs"
fi
], : )
- if test "$pan_headers" != "" >& /dev/null ; then
+ if test "$pan_headers" != "" > /dev/null 2>&1 ; then
gww_haspango="done"
- elif pkg-config --libs pangoxft >& /dev/null ; then
+ elif pkg-config --libs pangoxft > /dev/null 2>&1 ; then
AC_CHECK_HEADER(X11/Xft/Xft.h, gww_haspango="yes",,[#include <ft2build.h>])
else
for gww_prefix in /usr /usr/local /sw /opt/local /usr/X11R6/
@@ -352,7 +352,7 @@ if test "$gww_haspango" = "yes" ; then
CFLAGS="$CFLAGS `pkg-config --cflags pangoxft`"
fi
if test "$gww_haspango" = "yes" -a "$gww_hascairo" = "yes" ; then
- if pkg-config --libs pangocairo >& /dev/null ; then
+ if pkg-config --libs pangocairo > /dev/null 2>&1 ; then
gww_haspangocairo="yes"
CFLAGS="$CFLAGS `pkg-config --cflags pangocairo`"
fi