mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-18 21:18:10 +00:00
(svn r13894) -Fix: bashisms in configure and Makefile.in
This commit is contained in:
parent
61799786d5
commit
c779b7c4b2
@ -37,7 +37,7 @@ REVISION = !!REVISION!!
|
|||||||
AWK = !!AWK!!
|
AWK = !!AWK!!
|
||||||
DISTCC = !!DISTCC!!
|
DISTCC = !!DISTCC!!
|
||||||
|
|
||||||
RES := $(shell if ! [ -f $(CONFIG_CACHE_SOURCE_LIST) ] || [ -n "`cmp $(CONFIG_CACHE_SOURCE_LIST) $(SOURCE_LIST)`" ]; then cp $(SOURCE_LIST) $(CONFIG_CACHE_SOURCE_LIST); fi )
|
RES := $(shell if [ ! -f $(CONFIG_CACHE_SOURCE_LIST) ] || [ -n "`cmp $(CONFIG_CACHE_SOURCE_LIST) $(SOURCE_LIST)`" ]; then cp $(SOURCE_LIST) $(CONFIG_CACHE_SOURCE_LIST); fi )
|
||||||
|
|
||||||
all: config.cache
|
all: config.cache
|
||||||
ifdef DISTCC
|
ifdef DISTCC
|
||||||
|
8
configure
vendored
8
configure
vendored
@ -32,7 +32,7 @@ MEDIA_DIR="$ROOT_DIR/media"
|
|||||||
SOURCE_LIST="$ROOT_DIR/source.list"
|
SOURCE_LIST="$ROOT_DIR/source.list"
|
||||||
|
|
||||||
if [ "$1" = "--reconfig" ] || [ "$1" = "--reconfigure" ]; then
|
if [ "$1" = "--reconfig" ] || [ "$1" = "--reconfigure" ]; then
|
||||||
if ! [ -f "config.cache" ]; then
|
if [ ! -f "config.cache" ]; then
|
||||||
echo "can't reconfigure, because never configured before"
|
echo "can't reconfigure, because never configured before"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -43,7 +43,9 @@ if [ "$1" = "--reconfig" ] || [ "$1" = "--reconfigure" ]; then
|
|||||||
exit $?
|
exit $?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export SHOW_HELP="0"
|
# 'export SHOW_HELP="0"' doesn't work on some systems
|
||||||
|
SHOW_HELP="0"
|
||||||
|
export SHOW_HELP
|
||||||
|
|
||||||
set_default
|
set_default
|
||||||
detect_params "$@"
|
detect_params "$@"
|
||||||
@ -70,7 +72,7 @@ else
|
|||||||
PIPE_SORT="$sort"
|
PIPE_SORT="$sort"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! [ -f "$LANG_DIR/english.txt" ]; then
|
if [ ! -f "$LANG_DIR/english.txt" ]; then
|
||||||
echo "Languages not found in $LANG_DIR. Can't continue without it."
|
echo "Languages not found in $LANG_DIR. Can't continue without it."
|
||||||
echo "Please make sure the dir exists and contains at least english.txt"
|
echo "Please make sure the dir exists and contains at least english.txt"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user