Module Name: src
Committed By: christos
Date: Thu Sep 17 14:25:43 UTC 2015
Modified Files:
src/tools/compat: Makefile
Log Message:
undo previous; include is in ${.OBJDIR}
To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/tools/compat/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tools/compat/Makefile
diff -u src/tools/compat/Makefile:1.75 src/tools/compat/Makefile:1.76
--- src/tools/compat/Makefile:1.75 Wed Sep 16 22:22:47 2015
+++ src/tools/compat/Makefile Thu Sep 17 10:25:43 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.75 2015/09/17 02:22:47 christos Exp $
+# $NetBSD: Makefile,v 1.76 2015/09/17 14:25:43 christos Exp $
HOSTLIB= nbcompat
@@ -125,7 +125,7 @@ ${HOST_INCSDIR}/compat/${_d}:
# Install include files in ${TOOLDIR}/include/compat
includes: .PHONY ${HOST_INCINSTDIRS} .WAIT ${HOST_INCINSTFILES}
- @(cd ${.CURDIR}/include && find . -name '*.h' -print | while read f ; do \
+ @(cd include && find . -name '*.h' -print | while read f ; do \
${HOST_INSTALL_FILE} $$f ${HOST_INCSDIR}/compat/$$f ; \
done)