Date: Fri, 12 May 2000 01:09:47 -0700 From: "David O'Brien" <obrien@freebsd.org> To: Munehiro Matsuda <haro@tk.kubota.co.jp> Cc: freebsd-current@freebsd.org Subject: Re: Small fix for compile error with internat crypto code Message-ID: <20000512010946.A15400@dragon.nuxi.com> In-Reply-To: <20000512164109R.haro@tk.kubota.co.jp>; from haro@tk.kubota.co.jp on Fri, May 12, 2000 at 04:41:09PM %2B0900 References: <20000512164109R.haro@tk.kubota.co.jp>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, May 12, 2000 at 04:41:09PM +0900, Munehiro Matsuda wrote: > When run 'make -j4 buildworld' with internat crypto code installed, > I get following error: > mkdir: openssl: File exists > *** Error code 1 > - @test -d openssl || mkdir -p openssl > + -@mkdir -p openssl The "-" is not needed as `mkdir -p' will not return an error condition. > - @test -d openssl || mkdir -p openssl > + -@mkdir -p openssl Same here. Bruce Evans just told me the other day that make(1) can have issues with shell "&&" and "||". Guess you hit one of the cases it can fail with -j. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000512010946.A15400>