From ecd4b9aab3984bee936456ac3ddf7e400ad550fb Mon Sep 17 00:00:00 2001 From: Florent Rougon Date: Thu, 2 May 2019 01:36:00 +0200 Subject: [PATCH] download_and_compile.sh: fix path in generated default TerraGearGUI.conf The 'flightgear' path in ~/.config/TerraGear/TerraGearGUI.conf is supposed to point to $FG_ROOT, not to the FlightGear repository... --- download_and_compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download_and_compile.sh b/download_and_compile.sh index bb31d5f..8d21ede 100755 --- a/download_and_compile.sh +++ b/download_and_compile.sh @@ -1337,7 +1337,7 @@ if _elementIn "TERRAGEARGUI" "${WHATTOBUILD[@]}"; then mkdir -p ~/.config/TerraGear echo "[paths]" > "$cfgFile" echo "terragear=$INSTALL_DIR_TG" >> "$cfgFile" - echo "flightgear=$INSTALL_DIR_FGFS" >> "$cfgFile" + echo "flightgear=$INSTALL_DIR_FGFS/fgdata" >> "$cfgFile" fi SCRIPT=run_terrageargui.sh