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
47e79813d9
commit
0a997affd5
3 changed files with 3 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
build
|
||||
*.txt
|
||||
script
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -201,7 +201,7 @@ if ! test $src; then
|
|||
echo "error: target makefile ($src) does not exist !" >&2
|
||||
exit 1
|
||||
fi
|
||||
[ $dst ] && [ "$(readlink $dst)" == $src ] && rm $dst
|
||||
[ -e "$dst" ] && [ "$(readlink $dst)" = "$src" ] && rm $dst
|
||||
ln -s $src $dst
|
||||
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#---
|
||||
MAJOR := 0
|
||||
MINOR := 3
|
||||
PATCH := 1
|
||||
PATCH := 2
|
||||
EXTRAVERSION :=
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue