Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix make install when liblo is not available during build
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Oct 30, 2022
1 parent cbdbc13 commit f9666d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -64,7 +64,7 @@ ifeq ($(HAVE_OPENGL),true)
# glBars (needs OpenGL)
$(MAKE) all -C plugins/glBars

# ProM (needs OpenGL + ProjectM)
# ProM (needs OpenGL, ProjectM can be from system or vendored)
$(MAKE) all -C plugins/ProM
endif # HAVE_OPENGL

Expand Down Expand Up @@ -178,7 +178,9 @@ ifneq ($(MACOS),true)
endif

ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
cp -r bin/*-dssi $(DESTDIR)$(PREFIX)/lib/dssi/
endif # HAVE_LIBLO
endif # HAVE_CAIRO_OR_OPENGL
cp -rL bin/*.lv2 $(DESTDIR)$(PREFIX)/lib/lv2/
ifeq ($(HAVE_OPENGL),true)
Expand Down

0 comments on commit f9666d8

Please sign in to comment.