Fix ubuntu compilation error

This commit is contained in:
Axel 2023-07-04 11:11:58 +02:00 committed by bernat
parent 9ad376b7c3
commit 739bb6fd97
1 changed files with 3 additions and 2 deletions

View File

@ -139,11 +139,12 @@ fi
HOUDINI_PLUGIN_REPO=https://github.com/sideeffects/HoudiniEngineForUnreal.git
HOUDINI_PLUGIN_PATH=Plugins/HoudiniEngine
HOUDINI_PLUGIN_BRANCH=Houdini19.5-Unreal4.26
HOUDINI_PLUGIN_COMMIT=55b6a16cdf274389687fce3019b33e3b6e92a914
HOUDINI_PATCH=${CARLA_UTIL_FOLDER}/Patches/houdini_patch.txt
if [[ ! -d ${HOUDINI_PLUGIN_PATH} ]] ; then
git clone -b ${HOUDINI_PLUGIN_BRANCH} ${HOUDINI_PLUGIN_REPO} ${HOUDINI_PLUGIN_PATH}
git clone ${HOUDINI_PLUGIN_REPO} ${HOUDINI_PLUGIN_PATH}
pushd ${HOUDINI_PLUGIN_PATH} >/dev/null
git checkout ${HOUDINI_PLUGIN_COMMIT}
git apply ${HOUDINI_PATCH}
popd >/dev/null
fi