diff options
author | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2017-06-16 13:34:49 +0200 |
---|---|---|
committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2017-06-19 12:32:49 +0200 |
commit | cd738a97493ebc96ae63c58dd74acc39ba61271d (patch) | |
tree | b94330087a0f68775449cf7ff909b11fca4958b6 | |
parent | 1c7b50cf0377f8178464bb58b00c197149935995 (diff) | |
download | illumos-gfx-drm-cd738a97493ebc96ae63c58dd74acc39ba61271d.tar.gz |
8403 use $(ELFEDIT) to run elfedit
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Alexander Pyhalov <alp@rsu.ru>
-rw-r--r-- | usr/src/cmd/mdb/Makefile.tools | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/mdb/Makefile.tools b/usr/src/cmd/mdb/Makefile.tools index e901aee..313bee6 100644 --- a/usr/src/cmd/mdb/Makefile.tools +++ b/usr/src/cmd/mdb/Makefile.tools @@ -28,7 +28,7 @@ TOOLSDIR = $(SRC)/cmd/mdb/tools # Set the dynamic.flags1 field to: [ NOKSYMS EDITED ] # You can inspect it with: elfedit -e "dyn:flags1" file -SETDYNFLAG = elfedit -e "dyn:flags1 0x280000" +SETDYNFLAG = $(ELFEDIT) -e "dyn:flags1 0x280000" # FINDFP is only used on sparc anyway. # It's probably better to use compiler options to avoid FP instructions, |