Browse Source

All scripts use Bash

Syntax errors occur with /bin/sh interpreters, hence /bin/bash is used instead to correct for this
tags/v2.1-alpha1-winvst
parent
commit
ab8803c9f5
10 changed files with 11 additions and 12 deletions
  1. +1
    -1
      data/build-haiku.sh
  2. +2
    -3
      data/carla
  3. +1
    -1
      data/carla-control
  4. +1
    -1
      data/carla-database
  5. +1
    -1
      data/carla-jack-multi
  6. +1
    -1
      data/carla-jack-single
  7. +1
    -1
      data/carla-libdir
  8. +1
    -1
      data/carla-patchbay
  9. +1
    -1
      data/carla-rack
  10. +1
    -1
      data/carla-settings

+ 1
- 1
data/build-haiku.sh View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

export HAIKU=true
export CC=gcc-x86


+ 2
- 3
data/carla View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)

@@ -11,6 +11,5 @@ if [ "$1" = "--gdb" ]; then
fi

INSTALL_PREFIX="X-PREFIX-X"
PATH="$INSTALL_PREFIX"/lib/carla:$PATH
export PATH
export PATH="$INSTALL_PREFIX"/lib/carla:$PATH
exec $PYTHON "$INSTALL_PREFIX"/share/carla/carla --with-appname="$0" --with-libprefix="$INSTALL_PREFIX" "$@"

+ 1
- 1
data/carla-control View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-database View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-jack-multi View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-jack-single View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-libdir View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# small script that only prints carla's libdir.
# can be used to detect if carla is installed, and where to find its libcarla_standalone2.so file



+ 1
- 1
data/carla-patchbay View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-rack View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-settings View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

PYTHON=$(which python3 2>/dev/null)



Loading…
Cancel
Save