aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-02-19 22:15:42 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-02-19 22:15:42 +0000
commit6881125ee909e505be1fcf9015c7c19f1b9c79c9 (patch)
tree23da851f955e94abcfc7a0362a5a26dd99ae9a3f
parentef18d8daab4aad16f833fe17fe8be97671eebe71 (diff)
fix relative path to Tcl.framework included in Pd-extended.app (@executable_path is going to be Resources/bin/pd, not MacOS/Pd-extended)
svn path=/trunk/externals/loaders/tclpd/; revision=16002
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f877f86..0241073 100644
--- a/Makefile
+++ b/Makefile
@@ -321,7 +321,7 @@ ifeq ($(UNAME),Darwin)
# force tclpd to use the Tcl.framework built into Pd-extended
install_name_tool -change \
/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl \
- @executable_path/../Frameworks/Tcl.framework/Versions/8.5/Tcl \
+ @executable_path/../../Frameworks/Tcl.framework/Versions/8.5/Tcl \
$(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/$(LIBRARY_NAME).$(EXTENSION)
endif