mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 04:26:19 -04:00
Fix typo in mkconfig script (used == instead of =)
Patch by Murray Jensen, 18 Jul 2005
This commit is contained in:
parent
dc17fb6dc2
commit
507d3b0cde
@ -2,6 +2,9 @@
|
|||||||
Changes for U-Boot 1.1.3:
|
Changes for U-Boot 1.1.3:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Fix typo in mkconfig script (used == instead of =)
|
||||||
|
Patch by Murray Jensen, 18 Jul 2005
|
||||||
|
|
||||||
* Cleanup build problems on 64 bit build hosts
|
* Cleanup build problems on 64 bit build hosts
|
||||||
|
|
||||||
* Update MAINTAINERS file
|
* Update MAINTAINERS file
|
||||||
|
2
mkconfig
2
mkconfig
@ -32,7 +32,7 @@ rm -f asm
|
|||||||
ln -s asm-$2 asm
|
ln -s asm-$2 asm
|
||||||
rm -f asm-$2/arch
|
rm -f asm-$2/arch
|
||||||
|
|
||||||
if [ -z "$6" -o "$6" == "NULL" ] ; then
|
if [ -z "$6" -o "$6" = "NULL" ] ; then
|
||||||
ln -s arch-$3 asm-$2/arch
|
ln -s arch-$3 asm-$2/arch
|
||||||
else
|
else
|
||||||
ln -s arch-$6 asm-$2/arch
|
ln -s arch-$6 asm-$2/arch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user