Date: Fri, 16 Jun 2000 11:12:12 +0900 From: Motomichi Matsuzaki <mzaki@e-mail.ne.jp> To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf Makefile.alpha Makefile.i386 Message-ID: <86itvae5mr.wl@tkc.att.ne.jp> In-Reply-To: In your message of "Thu, 15 Jun 2000 08:57:34 -0700 (PDT)" <200006151557.IAA05990@freefall.freebsd.org> References: <200006151557.IAA05990@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Hi. At Thu, 15 Jun 2000 08:57:34 -0700 (PDT), David E. O'Brien <obrien@FreeBSD.org> wrote: > Modified files: > sys/conf Makefile.alpha Makefile.i386 > Log: > Only copy /modules to /modules.old if /modules exists and is populated. fix for it: --- Makefile.i386.orig Fri Jun 16 11:06:24 2000 +++ Makefile.i386 Fri Jun 16 11:07:05 2000 @@ -495,7 +495,7 @@ modules-install modules-install.debug: .if !defined(NO_MODULES_OLD) if [ -d ${DESTDIR}/modules -a -n "`ls ${DESTDIR}/modules`" ]; then \ - mkdir -p ${DESTDIR}/modules.old + mkdir -p ${DESTDIR}/modules.old; \ cp -p ${DESTDIR}/modules/* ${DESTDIR}/modules.old; \ fi; .endif -- Motomichi Matsuzaki <mzaki@e-mail.ne.jp> Dept. of Biological Sciences, Grad. School of Science, Univ. of Tokyo, Japan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86itvae5mr.wl>