From c13fc54a1d6f93804582485a4ffa267e1cd65223 Mon Sep 17 00:00:00 2001 From: Daniel Richard G Date: Sat, 15 Oct 2011 01:37:24 +0200 Subject: [PATCH] popen: Fix dependency conditions. * modules/popen (Depends-on, configure.ac): Fix shell syntax error. --- ChangeLog | 5 +++++ modules/popen | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e7de3ad37..7530b73ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2011-10-14 Daniel Richard G. (tiny change) + popen: Fix dependency conditions. + * modules/popen (Depends-on, configure.ac): Fix shell syntax error. + +2011-10-14 Daniel Richard G. (tiny change) + perror: Fix autoconf test. * m4/perror.m4 (gl_FUNC_PERROR): In the test program, include and . diff --git a/modules/popen b/modules/popen index 426589ac8..eb4102978 100644 --- a/modules/popen +++ b/modules/popen @@ -7,11 +7,11 @@ m4/popen.m4 Depends-on: stdio -open [test $HAVE_POPEN = 0 || $REPLACE_POPEN = 1] +open [test $HAVE_POPEN = 0 || test $REPLACE_POPEN = 1] configure.ac: gl_FUNC_POPEN -if test $HAVE_POPEN = 0 || $REPLACE_POPEN = 1; then +if test $HAVE_POPEN = 0 || test $REPLACE_POPEN = 1; then AC_LIBOBJ([popen]) gl_PREREQ_POPEN fi -- 2.11.0