From 13e5f76e620c5a60173e910b3cea37ec85348bf8 Mon Sep 17 00:00:00 2001 From: Marc Garcia Puig Date: Fri, 27 Nov 2020 15:27:25 +0100 Subject: [PATCH] Fixed error when using "--config" in make package --- CHANGELOG.md | 1 + Util/BuildTools/BuildOSM2ODR.sh | 3 +-- Util/BuildTools/BuildPythonAPI.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b61b41ba0..4c51a7597 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ * Fixed bug causing camera-based sensors to stop sending data * Fixed the lack of determinism on the output of raycast sensors * Fixed bug in the actor's id returned by the semantic lidar + * Fixed error when using `--config` parameter in `make package` * Fixed dependency of library **Xerces-c** on package * Fixed minor typo in the simulation data section of the documentation * Fixed the `config.py` to read the `.osm ` files in proper `utf-8` encoding diff --git a/Util/BuildTools/BuildOSM2ODR.sh b/Util/BuildTools/BuildOSM2ODR.sh index ae20c4412..8afa23206 100755 --- a/Util/BuildTools/BuildOSM2ODR.sh +++ b/Util/BuildTools/BuildOSM2ODR.sh @@ -44,7 +44,6 @@ while [[ $# -gt 0 ]]; do exit 1 ;; * ) - log "Here22. $1" shift ;; esac done @@ -70,7 +69,7 @@ fi # ============================================================================== if ${BUILD_OSM2ODR} ; then - + log "Building OSM2ODR." [ ! -d ${OSM2ODR_BUILD_FOLDER} ] && mkdir ${OSM2ODR_BUILD_FOLDER} cd ${OSM2ODR_BUILD_FOLDER} # define clang compiler diff --git a/Util/BuildTools/BuildPythonAPI.sh b/Util/BuildTools/BuildPythonAPI.sh index fec1b51c1..8757d0d60 100755 --- a/Util/BuildTools/BuildPythonAPI.sh +++ b/Util/BuildTools/BuildPythonAPI.sh @@ -17,7 +17,7 @@ REMOVE_INTERMEDIATE=false BUILD_RSS_VARIANT=false BUILD_PYTHONAPI=true -OPTS=`getopt -o h --long help,rebuild,clean,rss,python-version:,packages:,clean-intermediate,all,xml, -n 'parse-options' -- "$@"` +OPTS=`getopt -o h --long help,config:,rebuild,clean,rss,python-version:,packages:,clean-intermediate,all,xml, -n 'parse-options' -- "$@"` eval set -- "$OPTS"