From owner-freebsd-current Fri May 12 1: 9:52 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 5A2E837B781 for ; Fri, 12 May 2000 01:09:49 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@c02-138.006.popsite.net [216.126.135.138]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id BAA19706; Fri, 12 May 2000 01:09:47 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id BAA15490; Fri, 12 May 2000 01:09:47 -0700 (PDT) (envelope-from obrien) Date: Fri, 12 May 2000 01:09:47 -0700 From: "David O'Brien" To: Munehiro Matsuda Cc: freebsd-current@freebsd.org Subject: Re: Small fix for compile error with internat crypto code Message-ID: <20000512010946.A15400@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <20000512164109R.haro@tk.kubota.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000512164109R.haro@tk.kubota.co.jp>; from haro@tk.kubota.co.jp on Fri, May 12, 2000 at 04:41:09PM +0900 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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