Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Failing test for 5.5: C03traps, W02jobs
- X-seq: zsh-workers 42623
- From: Peter Stephenson <p.stephenson@xxxxxxxxxxx>
- To: Alexander Kapshuna <kapsh@xxxxxx>, "zsh-workers@xxxxxxx" <zsh-workers@xxxxxxx>
- Subject: Re: Failing test for 5.5: C03traps, W02jobs
- Date: Wed, 11 Apr 2018 10:26:31 +0100
- Cms-type: 201P
- Dkim-filter: OpenDKIM Filter v2.11.0 mailout1.w1.samsung.com 20180411092634euoutp01c18288a5d7a7682cfb765d5044ef6b46~kV4MUY5ol1499414994euoutp01f
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=samsung.com; s=mail20170921; t=1523438794; bh=/7EdRcwZnjrLEGn2qx8GJbZy+fOafjDZ4KHAVPorVJg=; h=Date:From:To:Subject:In-reply-to:References:From; b=bOWAGmzWO6w98c1TT2vsHRcZ2dgwvQ8CGIn6YGfI3/JO/c947u3k9AIw3dUqHHi0a 7zvLpBC7uYILYLn7geK9VbLsFreUeTywMO50VgyEsQa1//7eTdyBmnulE/ogmAXWra QQMRENEPl9a6ekBiwJ/MypU0fFbSTVwneWfFYqS0=
- In-reply-to: <3128331523380592@web45j.yandex.ru>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- Organization: SCSC
- References: <CGME20180410163106epcas5p4219272adac67653e93442e97285597a0@epcas5p4.samsung.com> <2860621523377110@web6g.yandex.ru> <20180410174547.0834141e@camnpupstephen.cam.scsc.local> <3128331523380592@web45j.yandex.ru>
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