Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: cdrom builds still broken for me on i386-current



Paul Goyette <paul%whooppee.com@localhost> typed:
: On Wed, 3 Dec 2008, Paul Goyette wrote:
:>>> cp: /usr/src/distrib/i386/cdroms/bootcd/../ramdisks/common/dot.profile: 
:>> I think I have fixed this but don't have time to run a test build right 
:>> now.
:>
:> I'm building right now - let you know soon if it's fixed.
: It's still broken:
:
: cp /sysinst cdrom
: cp: /sysinst: No such file or directory

The makefile needs another parent directory reference (since it's included
from immediate subdirectories).

Regards,
Geoff

Index: distrib/i386/cdroms/Makefile.cdrom
===================================================================
RCS file: /cvsroot/src/distrib/i386/cdroms/Makefile.cdrom,v
retrieving revision 1.9
diff -u -r1.9 Makefile.cdrom
--- distrib/i386/cdroms/Makefile.cdrom  3 Dec 2008 15:24:40 -0000       1.9
+++ distrib/i386/cdroms/Makefile.cdrom  4 Dec 2008 00:57:32 -0000
@@ -2,7 +2,7 @@
 
 .include <bsd.own.mk>
 
-SYSINSTDIR!=   cd ${.CURDIR}/../../utils/sysinst/arch/${MACHINE} && 
${PRINTOBJDIR}
+SYSINSTDIR!=   cd ${.CURDIR}/../../../utils/sysinst/arch/${MACHINE} && 
${PRINTOBJDIR}
 
 # Need multidot for the boot loader to read kernel modules as it doesn't
 # understand rockridge.



Home | Main Index | Thread Index | Old Index