Changeset - r5923:99223404db7c
[Not reviewed]
master
0 1 0
maedhros - 18 years ago 2007-02-03 09:54:42
maedhros@openttd.org
(svn r8551) -Fix (r7759): Use ${} instead of $() for variables.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -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
0 comments (0 inline, 0 general)