Module Name: src
Committed By: jkoshy
Date: Wed Apr 7 20:31:16 UTC 2021
Modified Files:
src/external/bsd/elftoolchain/lib: Makefile
Log Message:
Ensure that the 'libelf' directory is traversed before 'libdwarf'.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/elftoolchain/lib/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/elftoolchain/lib/Makefile
diff -u src/external/bsd/elftoolchain/lib/Makefile:1.1 src/external/bsd/elftoolchain/lib/Makefile:1.2
--- src/external/bsd/elftoolchain/lib/Makefile:1.1 Sun Mar 9 16:58:04 2014
+++ src/external/bsd/elftoolchain/lib/Makefile Wed Apr 7 20:31:16 2021
@@ -1,3 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2014/03/09 16:58:04 christos Exp $
-SUBDIR= libelf libdwarf
+# $NetBSD: Makefile,v 1.2 2021/04/07 20:31:16 jkoshy Exp $
+SUBDIR= libelf
+SUBDIR+= .WAIT # Process 'libelf' before 'libdwarf'.
+SUBDIR+= libdwarf
+
.include <bsd.subdir.mk>