summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Fiddaman <omnios@citrus-it.co.uk>2022-04-05 12:59:11 +0000
committerAndy Fiddaman <omnios@citrus-it.co.uk>2022-04-25 19:26:32 +0000
commit43f863f959a7ec8a6ee3645d33997561ff808c39 (patch)
tree2eebbeea9292f5d807aac5c051deb51245e4f8e1
parent1e6b83029f8d7ea1ade06314dc14e2fbd0cd2bcb (diff)
downloadillumos-joyent-43f863f959a7ec8a6ee3645d33997561ff808c39.tar.gz
14621 Missing dependency in cores tests build
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org> Approved by: Dan McDonald <danmcd@joyent.com>
-rw-r--r--usr/src/test/os-tests/tests/cores/libdumper/Makefile.com5
-rw-r--r--usr/src/test/os-tests/tests/cores/libdumper/amd64/Makefile5
-rw-r--r--usr/src/test/os-tests/tests/cores/libdumper/i386/Makefile3
-rw-r--r--usr/src/test/os-tests/tests/cores/secmapper/Makefile2
4 files changed, 13 insertions, 2 deletions
diff --git a/usr/src/test/os-tests/tests/cores/libdumper/Makefile.com b/usr/src/test/os-tests/tests/cores/libdumper/Makefile.com
index 3a985d3965..4223aa0896 100644
--- a/usr/src/test/os-tests/tests/cores/libdumper/Makefile.com
+++ b/usr/src/test/os-tests/tests/cores/libdumper/Makefile.com
@@ -33,6 +33,11 @@ SRCDIR = ../common
#
STRIP_STABS = /bin/true
+$(ROOTOPTDIR):
+ $(INS.dir)
+
+$(ROOTLIBDIR): $(ROOTOPTDIR)
+ $(INS.dir)
$(ROOTLIBDIR64): $(ROOTLIBDIR)
$(INS.dir)
diff --git a/usr/src/test/os-tests/tests/cores/libdumper/amd64/Makefile b/usr/src/test/os-tests/tests/cores/libdumper/amd64/Makefile
index 09690cb7b3..483ddb6a8f 100644
--- a/usr/src/test/os-tests/tests/cores/libdumper/amd64/Makefile
+++ b/usr/src/test/os-tests/tests/cores/libdumper/amd64/Makefile
@@ -16,4 +16,7 @@
include ../Makefile.com
include $(SRC)/lib/Makefile.lib.64
-install: all $(ROOTLIBDIR64) .WAIT $(ROOTLIBS64) $(ROOTLINKS64)
+install: all $(ROOTLIBS64) $(ROOTLINKS64)
+
+$(ROOTLIBS64): $(ROOTLIBDIR64)
+$(ROOTLINKS64): $(ROOTLIBS64)
diff --git a/usr/src/test/os-tests/tests/cores/libdumper/i386/Makefile b/usr/src/test/os-tests/tests/cores/libdumper/i386/Makefile
index 0af99e030c..38d02577c8 100644
--- a/usr/src/test/os-tests/tests/cores/libdumper/i386/Makefile
+++ b/usr/src/test/os-tests/tests/cores/libdumper/i386/Makefile
@@ -16,3 +16,6 @@
include ../Makefile.com
install: all $(ROOTLIBS) $(ROOTLINKS)
+
+$(ROOTLIBS): $(ROOTLIBDIR)
+$(ROOTLINKS): $(ROOTLIBS)
diff --git a/usr/src/test/os-tests/tests/cores/secmapper/Makefile b/usr/src/test/os-tests/tests/cores/secmapper/Makefile
index 84a28a56b8..1834eee09b 100644
--- a/usr/src/test/os-tests/tests/cores/secmapper/Makefile
+++ b/usr/src/test/os-tests/tests/cores/secmapper/Makefile
@@ -41,7 +41,7 @@ $(PROG): $(OBJS)
install: $(ROOTOPTPROGS)
-$(ROOTOPTPROGS): $(PROG)
+$(ROOTOPTPROGS): $(ROOTOPTCORE) $(PROG)
FRC: