blob: 7ec908b7aaf5b076c65f7e5efd7766a7475e7897 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- configure.orig 2017-01-20 12:42:02 UTC
+++ configure
@@ -6143,7 +6143,7 @@ $as_echo "$FLTK_CONFIG" >&6; }
FLTK_LIBS=`$FLTK_CONFIG --ldflags --use-images`
if test "x$target_mingw32" != "xyes"; then
if test "x$target_darwin" != "xyes"; then
- if grep -q "lX11" <<< "$FLTK_LIBS"; then
+ if echo "$FLTK_LIBS" | grep -q "lX11"; then
FLTK_LIBS="$FLTK_LIBS";
else
FLTK_LIBS="$FLTK_LIBS -lm -lX11";
|