diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index f4a1bc95db1..0c5d9066a36 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -979,7 +979,7 @@ ifdef EXPORTED_SYMBOL_FILE ifeq ($(HOST_OS),Darwin) # Darwin convention prefixes symbols with underscores. NativeExportsFile := $(ObjDir)/$(EXPORTED_SYMBOL_FILE).sed -$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) +$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir $(Verb) sed -e 's/[[:<:]]/_/' < $< > $@ clean-local:: -$(Verb) $(RM) -f $(NativeExportsFile) |