PERFORCE change 219764 for review

Brooks Davis brooks at FreeBSD.org
Mon Nov 12 21:28:32 UTC 2012


http://p4web.freebsd.org/@@219764?ac=10

Change 219764 by brooks at brooks_zenith on 2012/11/12 21:27:34

	Fix search path to find memcpy.S on mips64.  Use memset.c since
	mips doesn't have an asm version of it.

Affected files ...

.. //depot/projects/ctsrd/cheribsd/src/libexec/cheritest-helper/Makefile#6 edit

Differences ...

==== //depot/projects/ctsrd/cheribsd/src/libexec/cheritest-helper/Makefile#6 (text+ko) ====

@@ -7,7 +7,7 @@
 	stub.c					\
 	chsbrt.S				\
 	memcpy.S				\
-	memset.S
+	memset.c
 
 LDFLAGS+=	-Wl,--script=${.CURDIR}/sandbox.ld -nostdlib
 NO_MAN=
@@ -38,7 +38,8 @@
 cheritest-helper.dump: cheritest-helper
 	objdump -xsSD ${.ALLSRC} > ${.TARGET}
 
-.PATH: ${.CURDIR}/${MACHINE_ARCH}		\
-	${.CURDIR}/../../lib/libc/string/${MACHINE_TARGET}
+.PATH: ${.CURDIR}/${MACHINE_ARCH}
+.PATH: ${.CURDIR}/../../lib/libc/${MACHINE}/string
+.PATH: ${.CURDIR}/../../lib/libc/string
 
 .include <bsd.prog.mk>


More information about the p4-projects mailing list