diff options
Diffstat (limited to 'packages')
-rwxr-xr-x | packages/win32_inno/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 471e247a..11412c0d 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -110,11 +110,11 @@ prebuilt_install: #==============================================================================# bin_src = /usr/local/bin -system32 = /c/WINDOWS/system32 +system32 = $(SYSTEMROOT)/system32 lib_install: -# ultimately, the DLLs should be installed in %SystemRoot%\system32 by -# InnoSetup since they are 'officially' named and versioned DLLs, and can be -# shared between apps +# ultimately, these DLLs are installed in %SystemRoot%\system32 by InnoSetup +# since they are 'officially' named and versioned DLLs, and can be shared +# between apps install -d $(DESTDIR)$(prefix)/ install -p \ $(bin_src)/libbz2-2.dll \ @@ -148,6 +148,7 @@ lib_install: $(bin_src)/lua51.dll \ $(bin_src)/pthreadGC2.dll \ $(bin_src)/xvidcore.dll \ + $(system32)/libjack.dll \ $(DESTDIR)$(prefix)/ # very old pthread lib from pd-vanilla install -d $(DESTDIR)$(bindir) |