From d9474b01aede32e4096273b1ed3d75eb0af4c6ab Mon Sep 17 00:00:00 2001 From: Sean Callanan Date: Mon, 12 Apr 2010 20:23:08 +0000 Subject: [PATCH] Bug fix: made the enhanced disassembler's link flags work properly when EDIS_VERSION is defined llvm-svn: 101063 --- tools/edis/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/edis/Makefile b/tools/edis/Makefile index a5ec82ba7e4..a6d99c75628 100644 --- a/tools/edis/Makefile +++ b/tools/edis/Makefile @@ -32,7 +32,7 @@ ifeq ($(HOST_OS),Darwin) -Wl,-dead_strip ifdef EDIS_VERSION - LLVMLibsOptions := -Wl,-current_version -Wl,$(EDIS_VERSION) \ + LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version -Wl,$(EDIS_VERSION) \ -Wl,-compatibility_version -Wl,1 endif