# HG changeset patch # User maedhros # Date 1170496482 0 # Node ID 7871038cdebba89b0e92790e5967f4a43ba96053 # Parent c6cf6600a82caccc6af45a35f432cd3354df38f8 (svn r8551) -Fix (r7759): Use ${} instead of $() for variables. diff -r c6cf6600a82c -r 7871038cdebb config.lib --- a/config.lib Sat Feb 03 09:05:43 2007 +0000 +++ b/config.lib Sat Feb 03 09:54:42 2007 +0000 @@ -512,12 +512,12 @@ OSXAPP="OpenTTD.app" # TODO: remove next few lines of code when the search path patch has been applied - if [ -n "$custom_lang_dir" ] && [ "$custom_lang_dir" != "$(OSXAPP)/Contents/Lang/" ]; then + if [ -n "$custom_lang_dir" ] && [ "$custom_lang_dir" != "${OSXAPP}/Contents/Lang/" ]; then log 1 "configure: error: --custom-lang-dir and --with-application-bundle are not compatible exit 1 fi - if [ -n "$custom_lang_dir" ] && [ "$second_data_dir" != "$(OSXAPP)/Contents/Data/" ]; then + if [ -n "$custom_lang_dir" ] && [ "$second_data_dir" != "${OSXAPP}/Contents/Data/" ]; then log 1 "configure: error: --second-data-dir and --with-application-bundle are not compatible exit 1 fi