diff options
author | Robert Mustacchi <rm@fingolfin.org> | 2020-05-15 07:33:03 -0700 |
---|---|---|
committer | Robert Mustacchi <rm@fingolfin.org> | 2020-05-15 12:34:43 -0700 |
commit | bd025ac2b6fbfbc59dfc0bd50a0e56dd56de9229 (patch) | |
tree | 8d9e19ecceaa8878e46ec41cb3057fcc79ba9ea4 | |
parent | 4c87aefe8930bd07275b8dd2e96ea5f24d93a52e (diff) | |
download | illumos-joyent-bd025ac2b6fbfbc59dfc0bd50a0e56dd56de9229.tar.gz |
12739 gld module missing dep on mac after 12671
Reviewed by: Patrick Mooney <pmooney@pfmooney.com>
Reviewed by: Aurélien Larcher <aurelien.larcher@gmail.com>
Approved by: Dan McDonald <danmcd@joyent.com>
-rw-r--r-- | usr/src/uts/intel/gld/Makefile | 4 | ||||
-rw-r--r-- | usr/src/uts/sparc/gld/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/usr/src/uts/intel/gld/Makefile b/usr/src/uts/intel/gld/Makefile index 3b88451670..7a5d77368e 100644 --- a/usr/src/uts/intel/gld/Makefile +++ b/usr/src/uts/intel/gld/Makefile @@ -26,7 +26,7 @@ # # -# This makefile drives the production of the gld driver +# This makefile drives the production of the gld driver # kernel module. # # intel architecture dependent @@ -57,6 +57,8 @@ ALL_TARGET = $(BINARY) LINT_TARGET = $(MODULE).lint INSTALL_TARGET = $(BINARY) $(ROOTMODULE) +LDFLAGS += -dy -Nmisc/mac + # # For now, disable these lint checks; maintainers should endeavor # to investigate and remove these for maximum lint coverage. diff --git a/usr/src/uts/sparc/gld/Makefile b/usr/src/uts/sparc/gld/Makefile index d56548e81b..ad3519c146 100644 --- a/usr/src/uts/sparc/gld/Makefile +++ b/usr/src/uts/sparc/gld/Makefile @@ -25,7 +25,7 @@ # Use is subject to license terms. # # -# This makefile drives the production of the gld driver +# This makefile drives the production of the gld driver # kernel module. # # sparc architecture dependent @@ -56,6 +56,8 @@ ALL_TARGET = $(BINARY) LINT_TARGET = $(MODULE).lint INSTALL_TARGET = $(BINARY) $(ROOTMODULE) +LDFLAGS += -dy -Nmisc/mac + # # Overrides. # |