# HG changeset patch # User Daniel Richard G # Date 1318635444 -7200 # Node ID cf6263b60cda842b06ff9c15641cdc437367d5a8 # Parent 8e43c06551924a3644060cbbe53e848e634c83c3 popen: Fix dependency conditions. * modules/popen (Depends-on, configure.ac): Fix shell syntax error. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +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. diff --git a/modules/popen b/modules/popen --- a/modules/popen +++ b/modules/popen @@ -7,11 +7,11 @@ 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