mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 20:43:38 +01:00
Fix minor bugs.
This commit is contained in:
parent
0a997affd5
commit
566d2db1a6
2 changed files with 5 additions and 4 deletions
7
configure
vendored
7
configure
vendored
|
@ -91,8 +91,8 @@ EOF
|
||||||
#---
|
#---
|
||||||
# Check early help options
|
# Check early help options
|
||||||
#---
|
#---
|
||||||
if [[ $# -lt 1 ]] || [[ "$1" = "-h" ]] || [[ "$1" = "--help" ]]; then
|
if [[ $# -eq 1 ]] || [[ "$1" = "-h" ]] || [[ "$1" = "--help" ]]; then
|
||||||
help
|
help
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@ -113,6 +113,7 @@ fi
|
||||||
# Parsing arguments
|
# Parsing arguments
|
||||||
#---
|
#---
|
||||||
for arg; do case "$arg" in
|
for arg; do case "$arg" in
|
||||||
|
# Help options
|
||||||
--help | -h)
|
--help | -h)
|
||||||
help;;
|
help;;
|
||||||
|
|
||||||
|
@ -197,7 +198,7 @@ fi
|
||||||
#---
|
#---
|
||||||
dst='Makefile'
|
dst='Makefile'
|
||||||
src="../make/$makefile"
|
src="../make/$makefile"
|
||||||
if ! test $src; then
|
if ! [ -e $src ] ; then
|
||||||
echo "error: target makefile ($src) does not exist !" >&2
|
echo "error: target makefile ($src) does not exist !" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
#---
|
#---
|
||||||
MAJOR := 0
|
MAJOR := 0
|
||||||
MINOR := 3
|
MINOR := 3
|
||||||
PATCH := 2
|
PATCH := 3
|
||||||
EXTRAVERSION :=
|
EXTRAVERSION :=
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue