File liquid-dsp-fix-destdir.diff of Package mingw32-liquid-dsp
diff --git a/makefile.in b/makefile.in index 77f16d9..6eeae2b 100644 --- a/makefile.in +++ b/makefile.in @@ -1202,9 +1202,9 @@ help: install: @echo "installing..." @echo "" - mkdir -p $(DESTDIR)$(exec_prefix)$(libdir) + mkdir -p $(DESTDIR)$(libdir) mkdir -p $(DESTDIR)$(prefix)/include/liquid - install -m 644 -p $(SHARED_LIB) libliquid.a $(DESTDIR)$(exec_prefix)$(libdir) + install -m 644 -p $(SHARED_LIB) libliquid.a $(DESTDIR)$(libdir) install -m 644 -p $(addprefix include/,$(headers_install)) $(DESTDIR)$(prefix)/include/liquid @echo "" @echo "---------------------------------------------------------" @@ -1214,7 +1214,7 @@ install: @echo " libraries by running 'ldconfig' to make the shared" @echo " object available. You might also need to modify your" @echo " LD_LIBRARY_PATH environment variable to include the" - @echo " directory $(DESTDIR)$(exec_prefix)" + @echo " directory $(DESTDIR)$(libdir)" @echo "" @echo " Please report bugs to $(BUGREPORT)" @echo "---------------------------------------------------------" @@ -1227,8 +1227,8 @@ install: uninstall: @echo "uninstalling..." $(RM) $(addprefix $(DESTDIR)$(prefix)/include/liquid/, $(headers_install)) - $(RM) $(DESTDIR)$(exec_prefix)$(libdir)/libliquid.a - $(RM) $(DESTDIR)$(exec_prefix)$(libdir)/$(SHARED_LIB) + $(RM) $(DESTDIR)$(libdir)/libliquid.a + $(RM) $(DESTDIR)$(libdir)/$(SHARED_LIB) @echo "done." ##