mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-28 08:38:53 +00:00
13 lines
210 B
Plaintext
13 lines
210 B
Plaintext
|
# vim: set filetype=sh :
|
||
|
|
||
|
# Upgrade v3 -> v4:
|
||
|
# - uClibc retired, leaving only uClibc-ng
|
||
|
upgrade()
|
||
|
{
|
||
|
case "${opt}" in
|
||
|
CT_LIBC_UCLIBC)
|
||
|
replace CT_LIBC_UCLIBC_NG
|
||
|
;;
|
||
|
esac
|
||
|
}
|