diff options
author | Richard Lowe <richlowe@richlowe.net> | 2021-03-07 17:30:44 -0600 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2021-03-08 11:50:18 -0600 |
commit | 24ffd7b4991aba1983bd17ddf22f48fddd796956 (patch) | |
tree | 0392eaf380593960b349b87cb4c307227e5eeb82 | |
parent | 9f160f41aaee44e207fb709edec8d6493d3c4f2d (diff) | |
download | illumos-joyent-24ffd7b4991aba1983bd17ddf22f48fddd796956.tar.gz |
13609 i86xpv needs to be more careful with ao_gendisp
Reviewed by: Gordon Ross <Gordon.W.Ross@gmail.com>
Approved by: Robert Mustacchi <rm@fingolfin.org>
-rw-r--r-- | usr/src/uts/i86xpv/cpu/scripts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/i86xpv/cpu/scripts/Makefile b/usr/src/uts/i86xpv/cpu/scripts/Makefile index e5c08d85f6..def58a6f1c 100644 --- a/usr/src/uts/i86xpv/cpu/scripts/Makefile +++ b/usr/src/uts/i86xpv/cpu/scripts/Makefile @@ -38,7 +38,7 @@ def all install setup: ao_gendisp.pl $(PERLFILES) # We are sharing the ao_gendisp source with the i86pc AO_GENDISP_PL=../../../i86pc/cpu/scripts/ao_gendisp.pl ao_gendisp.pl: $(AO_GENDISP_PL) - $(SYMLINK) $(AO_GENDISP_PL) $@ + $(RM) $@; $(SYMLINK) $(AO_GENDISP_PL) $@ clean clobber: $(RM) ao_gendisp.pl $(PERLFILES) |