Browse Source

Fixed shell export syntax

To use the previous syntax, must be using #!/bin/bash
(Tested on Ubuntu 18.04.1)
tags/v2.1-alpha1-winvst
parent
commit
df262ea546
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      data/carla

+ 2
- 1
data/carla View File

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

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

Loading…
Cancel
Save