Make "tr" command use POSIX compliant; export HOSTOS make variable
Patch by Murray Jensen, 30 Jun 2005
This commit is contained in:
parent
b3b0fd552e
commit
f9d77ed380
@ -2,6 +2,9 @@
|
|||||||
Changes for U-Boot 1.1.3:
|
Changes for U-Boot 1.1.3:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Make "tr" command use POSIX compliant; export HOSTOS make variable
|
||||||
|
Patch by Murray Jensen, 30 Jun 2005
|
||||||
|
|
||||||
* Fix Murray Jensen's mail address.
|
* Fix Murray Jensen's mail address.
|
||||||
Patch by Murray Jensen, 30 Jun 2005
|
Patch by Murray Jensen, 30 Jun 2005
|
||||||
|
|
||||||
|
4
Makefile
4
Makefile
@ -29,10 +29,10 @@ HOSTARCH := $(shell uname -m | \
|
|||||||
-e s/powerpc/ppc/ \
|
-e s/powerpc/ppc/ \
|
||||||
-e s/macppc/ppc/)
|
-e s/macppc/ppc/)
|
||||||
|
|
||||||
HOSTOS := $(shell uname -s | tr A-Z a-z | \
|
HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
|
||||||
sed -e 's/\(cygwin\).*/cygwin/')
|
sed -e 's/\(cygwin\).*/cygwin/')
|
||||||
|
|
||||||
export HOSTARCH
|
export HOSTARCH HOSTOS
|
||||||
|
|
||||||
# Deal with colliding definitions from tcsh etc.
|
# Deal with colliding definitions from tcsh etc.
|
||||||
VENDOR=
|
VENDOR=
|
||||||
|
Loading…
Reference in New Issue
Block a user