diff options
author | Karel Zak | 2016-10-20 17:30:30 +0200 |
---|---|---|
committer | Karel Zak | 2016-10-20 17:30:30 +0200 |
commit | 9d328f82d78cbfd03f8d967a15446309e23b1e64 (patch) | |
tree | d2009f08ee37408bbb221428a1c090eb38c1529c /m4 | |
parent | build-sys: use ncurses-config rather than pkg-config (diff) | |
download | kernel-qcow2-util-linux-9d328f82d78cbfd03f8d967a15446309e23b1e64.tar.gz kernel-qcow2-util-linux-9d328f82d78cbfd03f8d967a15446309e23b1e64.tar.xz kernel-qcow2-util-linux-9d328f82d78cbfd03f8d967a15446309e23b1e64.zip |
build-sys: fix typo on ncurses-config command line
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ul.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -448,7 +448,7 @@ AC_DEFUN([UL_NCURSES_CHECK], [ NCURSES_LIBS=`suffix[]6-config --libs` NCURSES_CFLAGS=`suffix[]6-config --cflags` AC_MSG_RESULT([(v6) yes]) - elif AC_RUN_LOG([suffix[]5-config --version 2>/dev/null]); then + elif AC_RUN_LOG([suffix[]5-config --version >/dev/null]); then have_[]suffix=yes NCURSES_LIBS=`suffix[]5-config --libs` NCURSES_CFLAGS=`suffix[]5-config --cflags` |