Subject: Re: nbmake-xxx failed on OpenBSD
To: Tetsuya Isaki <isaki@par.odn.ne.jp>
From: Simon J. Gerraty <sjg@crufty.net>
List: tech-toolchain
Date: 02/13/2005 23:24:31
On Fri, 11 Feb 2005 18:36:38 +0900, Tetsuya Isaki writes:
>According to him, it solves
> set +o braceexpand
>or
> set -o posix

Cool - that should save you a lot of hassle.

>Therefore, It solved for me as follows.
>May I commit this?

No need for the *) case, but otherwise looks ok.

>--- build.sh    10 Feb 2005 06:42:46 -0000      1.1.1.1
>+++ build.sh    11 Feb 2005 09:20:00 -0000
>@@ -844,6 +844,14 @@
>                makewrapout=">>\${makewrapper}"
>        fi
> 
>+       case "${uname_s}" in
>+       OpenBSD)
>+               set +o braceexpand
>+               ;;
>+       *)
>+               ;;
>+       esac
>+