diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-06-13 03:44:26 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-06-13 03:44:26 +0000 |
commit | be49172033ad5d8443e2861934cc4516322b5097 (patch) | |
tree | 6ca75aa0e6a7001e0133ffb4b8b3ec52c01d4e6c | |
parent | b7c6412a7952ba39d8ec634a0984461216b3d459 (diff) |
quick hack to install the pddplink files in a place where they will be found on Windows
svn path=/trunk/; revision=7769
-rwxr-xr-x | packages/win32_inno/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 95e501e9..eddecfd2 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -52,7 +52,7 @@ install: pd_install prebuilt_install lib_install exe_install @echo "win32_inno install succeeded!" -prebuilt_install: +prebuilt_install: pddplink_hack $(MAKE) -C $(packages_src) $(DEST_PATHS) extended_install $(MAKE) -C $(packages_src) $(DEST_PATHS) doc_format install -p pd-settings.reg $(DESTDIR)$(prefix) @@ -98,6 +98,12 @@ exe_install: install -p $(bin_src)/tclsh84.exe $(bindir) +# on Windows, the pddp tcl files need to be in pd/lib aka $(libdir) +pddplink_hack: + install -d $(libdir)/pddp + install -p $(externals_src)/miXed/bin/pddp/*.tcl $(libdir)/pddp + + # here are some hacks to assemble a package from binaries no_compile_hacks: cp -a /c/Program\ Files/pd-0.38-4 $(DESTDIR)$(prefix)/ |