diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-12-14 17:04:08 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-12-14 17:04:08 +0000 |
commit | 64de91efc443980184c50d5613c302f3c74f481d (patch) | |
tree | dc1a6e20fb5e33d175ed7819508c7780639931f4 | |
parent | b3a02e2f7db0687a9465aa221a3bbe302417da6c (diff) |
gripd is no longer supported by its author, and the old binaries don't really work with newer versions of Pd, so I am removing the gripd kludge frmo the build
svn path=/trunk/; revision=6887
-rwxr-xr-x | packages/win32_inno/Makefile | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 19608954..0b9c180a 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -47,7 +47,7 @@ pd_install: build_pd # -$(MAKE) -C $(pd_src)/src $(DEST_PATHS) install $(MAKE) -C $(pd_src)/src -f makefile.mingw $(DEST_PATHS) install -install: pd_install prebuilt_install lib_install exe_install gripd_hack +install: pd_install prebuilt_install lib_install exe_install @echo " " @echo "win32_inno install succeeded!" @@ -83,11 +83,6 @@ lib_install: # if these are there, install them -install -p $(system32)/msvcp71.dll $(dlldir)/msvcp71.dll -install -p $(system32)/pthreadVC.dll $(dlldir)/pthreadVC.dll -# this is a quick hack, since the gripd.dll still looks for pthreadVC.dll -# (test -e $(DESTDIR)$(prefix)/gripd/pthreadVC.dll && \ -# install -p $(DESTDIR)$(prefix)/gripd/pthreadVC.dll $(dlldir)/pthreadVC.dll) || \ -# test -e $(SYSTEMROOT)/system32/pthreadVC.dll || \ -# install -p $(SYSTEMROOT)/pthreadVC.dll $(dlldir)/pthreadVC.dll # these go into the Pd package's lib dir install -d $(libdir)/tcl8.4 cp -r /usr/local/lib/tcl8.4/* $(libdir)/tcl8.4 @@ -105,11 +100,6 @@ exe_install: no_compile_hacks: cp -a /c/Program\ Files/pd-0.38-4 $(DESTDIR)$(prefix)/ -gripd_hack: GRIPD_ZIP=$(CWD)/gripd-0.1.1.zip -gripd_hack: - test -e $(GRIPD_ZIP) && \ - cd $(DESTDIR)$(prefix) && unzip $(GRIPD_ZIP) - $(PD_INNO_SETUP): $(PD_INNO_SETUP).in @echo "Making Inno Setup file: $(PD_INNO_SETUP)" cat "$(PD_INNO_SETUP).in" | \ |