mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23: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
|
||||
#---
|
||||
if [[ $# -lt 1 ]] || [[ "$1" = "-h" ]] || [[ "$1" = "--help" ]]; then
|
||||
help
|
||||
if [[ $# -eq 1 ]] || [[ "$1" = "-h" ]] || [[ "$1" = "--help" ]]; then
|
||||
help
|
||||
fi
|
||||
|
||||
|
||||
|
@ -113,6 +113,7 @@ fi
|
|||
# Parsing arguments
|
||||
#---
|
||||
for arg; do case "$arg" in
|
||||
# Help options
|
||||
--help | -h)
|
||||
help;;
|
||||
|
||||
|
@ -197,7 +198,7 @@ fi
|
|||
#---
|
||||
dst='Makefile'
|
||||
src="../make/$makefile"
|
||||
if ! test $src; then
|
||||
if ! [ -e $src ] ; then
|
||||
echo "error: target makefile ($src) does not exist !" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#---
|
||||
MAJOR := 0
|
||||
MINOR := 3
|
||||
PATCH := 2
|
||||
PATCH := 3
|
||||
EXTRAVERSION :=
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue