Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Apr 2001 09:53:43 -0700
From:      bmah@freebsd.org (Bruce A. Mah)
To:        obrien@freebsd.org
Cc:        bmah@freebsd.org, freebsd-current@freebsd.org
Subject:   One more typo in src/release/Makefile, rev 1.612? (w/patch)
Message-ID:  <200104161653.f3GGrh657661@bmah-freebsd-0.cisco.com>

next in thread | raw e-mail | index | archive | help
--==_Exmh_-1507808330P
Content-Type: text/plain; charset=us-ascii

Hi David--

Thanks for fixing the typo in src/release/Makefile.  I think however the
real cause of the error that people were seeing is a typo on the line
above...there should (I think) be a " && \" at the end of the previous
line.  So what happens is that the "make kernel-reinstall-debug" gets
run in the wrong directory, and that's why it's falling over. Patch
below.

I'm testing this now...

Cheers,

Bruce.

Index: Makefile
===================================================================
RCS file: /home/ncvs/src/release/Makefile,v
retrieving revision 1.612
diff -u -r1.612 Makefile
--- Makefile    2001/04/16 15:17:27     1.612
+++ Makefile    2001/04/16 16:44:41
@@ -846,7 +846,7 @@
                        make ${KERNEL_FLAGS} KERNEL=${KERNEL} && \
                        make KERNEL=${KERNEL} DESTDIR=${RD}/kernels install && \
                        [ -r ${.CURDIR}/../sys/${MACHINE}/conf/${KERNEL}.hints ] && \
-                       cp ${.CURDIR}/../sys/${MACHINE}/conf/${KERNEL}.hints ${RD}/kernels
+                       cp ${.CURDIR}/../sys/${MACHINE}/conf/${KERNEL}.hints ${RD}/kernels && \
                        make KERNEL=${KERNEL} DESTDIR=${RD}/kernels kernel-reinstall.debug
 
 #




--==_Exmh_-1507808330P
Content-Type: application/pgp-signature

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.4 (FreeBSD)
Comment: Exmh version 2.2 06/23/2000

iD8DBQE62yOW2MoxcVugUsMRAuo/AKCEx8YGb+MNaAETpPaNaWHbzQuA5ACfbHUT
O8A9qxCLYdUcTwRUgxzzz0Y=
=vBGs
-----END PGP SIGNATURE-----

--==_Exmh_-1507808330P--

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?200104161653.f3GGrh657661>