Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Failing test for 5.5: C03traps, W02jobs



On Tue, 10 Apr 2018 20:16:32 +0300
Alexander Kapshuna <kapsh@xxxxxx> wrote:
> Yes, you are right. I am using glibc 2.27. 
> Applying this patch fixes both of fails. Thanks for the help. 
> 
> ./configure warns though about:
> 
> > checking where signal.h is located... ./configure: line 8998: test:
> > too many
> > arguments /usr/x86_64-pc-linux-gnu/include/bits/signum.h /usr/x86_64-pc-linux-gnu/include/bits/signum-generic.h  

Some extra quotes will help with that.

> Can somebody also tell, is there any chance to see this fix in the
> close future? Something like hotfix release 5.5.1.

Yes, I'll probably do that during the next week.

pws

diff --git a/configure.ac b/configure.ac
index c0686b6..d15a6cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1553,12 +1553,12 @@ do
     SIGNAL_H="$SIGNAL_H $SIGNAL_TRY_H"
   fi
 done
-if test x$SIGNAL_H = x; then
+if test "x$SIGNAL_H" = x; then
   AC_MSG_ERROR(SIGNAL MACROS NOT FOUND:  please report to developers)
 fi
-zsh_cv_path_signal_h=$SIGNAL_H
+zsh_cv_path_signal_h="$SIGNAL_H"
 ])
-SIGNAL_H=$zsh_cv_path_signal_h
+SIGNAL_H="$zsh_cv_path_signal_h"
 AC_SUBST(SIGNAL_H)dnl
 
 dnl Where are error names located?  Needed as input for errnames1.awk



Messages sorted by: Reverse Date, Date, Thread, Author