Fixed error when using "--config" in make package
This commit is contained in:
parent
6189aa59f6
commit
13e5f76e62
|
@ -17,6 +17,7 @@
|
||||||
* Fixed bug causing camera-based sensors to stop sending data
|
* Fixed bug causing camera-based sensors to stop sending data
|
||||||
* Fixed the lack of determinism on the output of raycast sensors
|
* Fixed the lack of determinism on the output of raycast sensors
|
||||||
* Fixed bug in the actor's id returned by the semantic lidar
|
* 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 dependency of library **Xerces-c** on package
|
||||||
* Fixed minor typo in the simulation data section of the documentation
|
* 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
|
* Fixed the `config.py` to read the `.osm ` files in proper `utf-8` encoding
|
||||||
|
|
|
@ -44,7 +44,6 @@ while [[ $# -gt 0 ]]; do
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
log "Here22. $1"
|
|
||||||
shift ;;
|
shift ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
@ -70,7 +69,7 @@ fi
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
if ${BUILD_OSM2ODR} ; then
|
if ${BUILD_OSM2ODR} ; then
|
||||||
|
log "Building OSM2ODR."
|
||||||
[ ! -d ${OSM2ODR_BUILD_FOLDER} ] && mkdir ${OSM2ODR_BUILD_FOLDER}
|
[ ! -d ${OSM2ODR_BUILD_FOLDER} ] && mkdir ${OSM2ODR_BUILD_FOLDER}
|
||||||
cd ${OSM2ODR_BUILD_FOLDER}
|
cd ${OSM2ODR_BUILD_FOLDER}
|
||||||
# define clang compiler
|
# define clang compiler
|
||||||
|
|
|
@ -17,7 +17,7 @@ REMOVE_INTERMEDIATE=false
|
||||||
BUILD_RSS_VARIANT=false
|
BUILD_RSS_VARIANT=false
|
||||||
BUILD_PYTHONAPI=true
|
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"
|
eval set -- "$OPTS"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue