Browse Source

Fix build (remove bin/resources link, use signal on unix, not linux)

tags/v2.1-rc1
falkTX 4 years ago
parent
commit
1fffd7c663
3 changed files with 2 additions and 2 deletions
  1. +0
    -1
      bin/resources
  2. +1
    -1
      source/bridges-plugin/CarlaBridgePlugin.cpp
  3. +1
    -0
      source/frontend/Makefile

+ 0
- 1
bin/resources View File

@@ -1 +0,0 @@
../source/native-plugins/resources

+ 1
- 1
source/bridges-plugin/CarlaBridgePlugin.cpp View File

@@ -84,7 +84,7 @@ static bool gIsInitiated = false;
static volatile bool gCloseNow = false;
static volatile bool gSaveNow = false;

#if defined(CARLA_OS_LINUX)
#if defined(CARLA_OS_UNIX)
static void closeSignalHandler(int) noexcept
{
gCloseNow = true;


+ 1
- 0
source/frontend/Makefile View File

@@ -257,6 +257,7 @@ resources_rc.py: $(RESDIR)/resources.qrc $(RESDIR)/*/*.png $(RESDIR)/*/*.svg $(R
$(PYRCC) $< -o $@

$(BINDIR)/resources/%: %
-@mkdir -p $(BINDIR)/resources
$(LINK) $(CURDIR)/$* $(BINDIR)/resources/

# ---------------------------------------------------------------------------------------------------------------------


Loading…
Cancel
Save