diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-08-04 21:19:27 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-08-04 21:19:27 +0000 |
commit | eab43d86fb1cf4d3bbb3a591cc4fc37a464e67c3 (patch) | |
tree | 65fecc0f031ff9cf73c3591fca661373063dbe90 | |
parent | 7338ae5b88cc527d4e763926d9b9adeb997042a0 (diff) |
Shared libraries are usually prepended with `lib'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15502 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llee/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llee/Makefile b/tools/llee/Makefile index 50632e0974..be9e2fb352 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$(SHLIBEXT) $$\* > $@ + echo exec env LD_PRELOAD=$(DESTLIBCURRENT)/libexecve$(SHLIBEXT) $$\* > $@ chmod u+x $@ clean:: |