Skip to content

Commit

Permalink
Fix typo in carla lib path
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Feb 5, 2025
1 parent 40000ff commit d3dc7a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/linux/apprun-hooks/carla-hook.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if command -v carla > /dev/null 2>&1; then
if [ -e "$CARLA_PREFIX/$lib/carla/$CARLA_LIB" ]; then
# Add library to LD_PRELOAD so libcarlabase.so can find it
carla_lib_found=true
export LD_PRELOAD="$CARLA_PREFIX/$lib/carla/:$LD_PRELOAD"
export LD_PRELOAD="$CARLA_PREFIX/$lib/carla/${CARLA_LIB}:$LD_PRELOAD"
echo "Carla appears to be installed on this system at $CARLA_PREFIX/$lib so we'll use it." >&2
break
fi
Expand Down

0 comments on commit d3dc7a8

Please sign in to comment.