From 2e30da531b61fda9ce04f31101724d4f58d882c3 Mon Sep 17 00:00:00 2001 From: maedhros Date: Sat, 3 Feb 2007 09:54:42 +0000 Subject: (svn r8551) -Fix (r7759): Use ${} instead of $() for variables. --- config.lib | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config.lib') diff --git a/config.lib b/config.lib index b108031b9..804de5223 100644 --- a/config.lib +++ b/config.lib @@ -512,12 +512,12 @@ check_params() { 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 -- cgit v1.2.3-54-g00ecf