diff options
author | Sumit Bose <sbose@redhat.com> | 2011-02-08 10:55:06 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-10 16:14:21 +0100 |
commit | d02b5cd65574a3f0af3fa73439af251e728c87d8 (patch) | |
tree | 86a6f9eaf19c210645d996383220550cb19ecdfa /lib/replace | |
parent | 2f6d76a95fea8aa1696c039516818d9e3bfe35d1 (diff) | |
download | samba-d02b5cd65574a3f0af3fa73439af251e728c87d8.tar.gz samba-d02b5cd65574a3f0af3fa73439af251e728c87d8.tar.xz samba-d02b5cd65574a3f0af3fa73439af251e728c87d8.zip |
replace: Add missing eval to m4 script
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Thu Feb 10 16:14:21 CET 2011 on sn-devel-104
Diffstat (limited to 'lib/replace')
-rw-r--r-- | lib/replace/libreplace_macros.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/replace/libreplace_macros.m4 b/lib/replace/libreplace_macros.m4 index 1856eacf66e..46aedd3a839 100644 --- a/lib/replace/libreplace_macros.m4 +++ b/lib/replace/libreplace_macros.m4 @@ -293,9 +293,9 @@ AC_DEFUN(AC_VERIFY_C_PROTOTYPE, $2 } ])],[ - AS_TR_SH([ac_cv_c_prototype_$1])=yes + eval AS_TR_SH([ac_cv_c_prototype_$1])=yes ],[ - AS_TR_SH([ac_cv_c_prototype_$1])=no + eval AS_TR_SH([ac_cv_c_prototype_$1])=no ]) ) AS_IF([test $AS_TR_SH([ac_cv_c_prototype_$1]) = yes],[$3],[$4]) |