diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-04-05 04:02:40 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-04-05 04:02:40 +0000 |
commit | a73aa283e27c6d756f87dcd30432b68a7c201a16 (patch) | |
tree | 7452b5988a8fa5db85e6d68425b24c8816fedd58 /tools/klee-stats | |
parent | a008fb78987a4675d12f5934f3d51bbd84c3f653 (diff) | |
download | klee-a73aa283e27c6d756f87dcd30432b68a7c201a16.tar.gz |
Fix some final objdir != src problems.
- PR4269. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@100396 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/klee-stats')
-rw-r--r-- | tools/klee-stats/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/klee-stats/Makefile b/tools/klee-stats/Makefile index a1eba234..0b35fa51 100644 --- a/tools/klee-stats/Makefile +++ b/tools/klee-stats/Makefile @@ -21,9 +21,9 @@ all-local:: $(ToolBuildPath) $(ToolBuildPath): $(ToolDir)/.dir -$(ToolBuildPath): $(TOOLSCRIPTNAME) +$(ToolBuildPath): $(PROJ_SRC_DIR)/$(TOOLSCRIPTNAME) $(Echo) Copying $(BuildMode) script $(TOOLSCRIPTNAME) - $(Verb) $(CP) -f $(TOOLSCRIPTNAME) "$@" + $(Verb) $(CP) -f $(PROJ_SRC_DIR)/$(TOOLSCRIPTNAME) "$@" $(Verb) chmod 0755 "$@" ifdef NO_INSTALL |