From owner-freebsd-current Fri May 12 0:46:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from kbtfw.kubota.co.jp (kbtfw.kubota.co.jp [133.253.102.202]) by hub.freebsd.org (Postfix) with ESMTP id 1059137BCFB for ; Fri, 12 May 2000 00:46:28 -0700 (PDT) (envelope-from haro@tk.kubota.co.jp) Received: by kbtfw.kubota.co.jp; id QAA02921; Fri, 12 May 2000 16:46:25 +0900 (JST) Received: from unknown(133.253.122.1) by kbtfw.kubota.co.jp via smap (V4.2) id xma002327; Fri, 12 May 00 16:45:23 +0900 Received: from jkpc15.ttr.kubota.co.jp ([192.168.7.250]) by kbtmx.eto.kubota.co.jp (8.9.3+3.2W/3.7W) with ESMTP id QAA05990 for ; Fri, 12 May 2000 16:45:21 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by jkpc15.ttr.kubota.co.jp (8.9.3/3.7W-02/21/99) with ESMTP id QAA17356 for ; Fri, 12 May 2000 16:41:09 +0900 (JST) To: freebsd-current@freebsd.org Subject: Small fix for compile error with internat crypto code X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000512164109R.haro@tk.kubota.co.jp> Date: Fri, 12 May 2000 16:41:09 +0900 From: haro@tk.kubota.co.jp (Munehiro Matsuda) X-Dispatcher: imput version 990905(IM130) Lines: 49 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, When run 'make -j4 buildworld' with internat crypto code installed, I get following error: ===> librsausa cp /usr/src/secure/lib/librsausa/../libcrypto/opensslconf-i386.h openssl/opensslconf.h mkdir: openssl: File exists *** Error code 1 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error Following simple patch seems to cure the problem. Could anybody verify and commit it? ----------8<---------8<---------Cut here---------8<---------8<--------- --- src/secure/lib/libcrypto/Makefile.inc.org Thu Apr 20 19:42:52 2000 +++ src/secure/lib/libcrypto/Makefile.inc Fri May 12 12:58:59 2000 @@ -30,10 +30,10 @@ echo "#endif" ) > ${.TARGET} openssl/opensslconf.h: ../libcrypto/opensslconf-${MACHINE_ARCH}.h - @test -d openssl || mkdir -p openssl + -@mkdir -p openssl cp ${.OODATE} ${.TARGET} openssl/headers-copied: - @test -d openssl || mkdir -p openssl + -@mkdir -p openssl ${INSTALL} ${COPY} -m 444 ${CRYPTO_HDRS} ${EXTRA_HDRS} openssl @touch ${.TARGET} ----------8<---------8<---------Cut here---------8<---------8<--------- Thank you, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Office of Business Planning & Development, Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@tk.kubota.co.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message