From d88c3be6fc4c1f0330ce4b2dda183ea53f87f8b5 Mon Sep 17 00:00:00 2001 From: Good Guy Date: Sat, 4 Jun 2016 18:50:11 -0600 Subject: [PATCH] fix for install without ladspa build --- cinelerra-5.1/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cinelerra-5.1/Makefile.am b/cinelerra-5.1/Makefile.am index 95fc4ee3..5085f0e7 100644 --- a/cinelerra-5.1/Makefile.am +++ b/cinelerra-5.1/Makefile.am @@ -50,7 +50,9 @@ cinstall: COPYING README msg.txt ffmpeg doc models cd bin/locale; $(inst_sh) "$(DESTDIR)$(localedir)" . cd bin/plugins; $(inst_sh) "$(DESTDIR)$(WANT_PLUGIN_DIR)" . - cd bin/ladspa; $(inst_sh) "$(DESTDIR)$(WANT_LADSPA_DIR)" . + if test "x$(WANT_LADSPA_BUILD)" = "xyes"; then \ + cd bin/ladspa; $(inst_sh) "$(DESTDIR)$(WANT_LADSPA_DIR)" . ; \ + fi cd bin/applications; $(inst_sh) "$(DESTDIR)$(datadir)/applications" . cd bin/pixmaps; $(inst_sh) "$(DESTDIR)$(datadir)/pixmaps" . -- 2.26.2