aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llee
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-01-26 20:59:41 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-01-26 20:59:41 +0000
commit7f7d16b62f9789c378a489a65ad51d50687c4c36 (patch)
tree0dc7f53fb0aa8b8b0d0d15c39b72235b37b76217 /tools/llee
parent48e9f26df5f6085a1c972069ba6aa227821cd41c (diff)
downloadexternal_llvm-7f7d16b62f9789c378a489a65ad51d50687c4c36.zip
external_llvm-7f7d16b62f9789c378a489a65ad51d50687c4c36.tar.gz
external_llvm-7f7d16b62f9789c378a489a65ad51d50687c4c36.tar.bz2
Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into
every file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10976 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llee')
-rw-r--r--tools/llee/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llee/Makefile b/tools/llee/Makefile
index a93c4de..50632e0 100644
--- a/tools/llee/Makefile
+++ b/tools/llee/Makefile
@@ -16,7 +16,7 @@ all:: llee
llee: $(DESTTOOLCURRENT)/llee
$(DESTTOOLCURRENT)/llee: Makefile
- echo exec env LD_PRELOAD=$(DESTLIBCURRENT)/execve.so $$\* > $@
+ echo exec env LD_PRELOAD=$(DESTLIBCURRENT)/execve$(SHLIBEXT) $$\* > $@
chmod u+x $@
clean::