tools/mkexport.sh: Remove WINTOOL and related option
since it isn't used anymore after:
commit bd656888f2
Author: Xiang Xiao <xiaoxiang@xiaomi.com>
Date: Mon May 18 22:18:15 2020 +0800
build: Replace WINTOOL with CYGWIN_WINTOOL Kconfig
so the correct value can be determinated by Kconfig system automatically
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
3176f2c3f0
commit
528cfb8457
2 changed files with 2 additions and 9 deletions
|
|
@ -227,7 +227,7 @@ mkexport.sh and Makefile.export
|
||||||
Makefile.export is used only by the mkexport.sh script to parse out
|
Makefile.export is used only by the mkexport.sh script to parse out
|
||||||
options from the top-level Make.defs file.
|
options from the top-level Make.defs file.
|
||||||
|
|
||||||
USAGE: tools/mkexport.sh [-d] [-z] [-u] [-w|wy|wn] -t <top-dir> [-x <lib-ext>] -l "lib1 [lib2 [lib3 ...]]"
|
USAGE: tools/mkexport.sh [-d] [-z] [-u] -t <top-dir> [-x <lib-ext>] -l "lib1 [lib2 [lib3 ...]]"
|
||||||
|
|
||||||
This script also depends on the environment variable MAKE which is set
|
This script also depends on the environment variable MAKE which is set
|
||||||
in the top-level Makefile before starting mkexport.sh. If MAKE is not
|
in the top-level Makefile before starting mkexport.sh. If MAKE is not
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
# Get the input parameter list
|
# Get the input parameter list
|
||||||
|
|
||||||
USAGE="USAGE: $0 [-d] [-z] [-u] [-w|wy|wn] -t <top-dir> [-x <lib-ext>] [-a <apps-dir>] [-m <make-exe>] -l \"lib1 [lib2 [lib3 ...]]\""
|
USAGE="USAGE: $0 [-d] [-z] [-u] [-t <top-dir> [-x <lib-ext>] [-a <apps-dir>] [-m <make-exe>] -l \"lib1 [lib2 [lib3 ...]]\""
|
||||||
unset TOPDIR
|
unset TOPDIR
|
||||||
unset LIBLIST
|
unset LIBLIST
|
||||||
unset TGZ
|
unset TGZ
|
||||||
|
|
@ -42,7 +42,6 @@ unset APPDIR
|
||||||
unset BOARDDIR
|
unset BOARDDIR
|
||||||
|
|
||||||
USRONLY=n
|
USRONLY=n
|
||||||
WINTOOL=n
|
|
||||||
LIBEXT=.a
|
LIBEXT=.a
|
||||||
|
|
||||||
while [ ! -z "$1" ]; do
|
while [ ! -z "$1" ]; do
|
||||||
|
|
@ -66,12 +65,6 @@ while [ ! -z "$1" ]; do
|
||||||
shift
|
shift
|
||||||
MAKE="$1"
|
MAKE="$1"
|
||||||
;;
|
;;
|
||||||
-wy )
|
|
||||||
WINTOOL=y
|
|
||||||
;;
|
|
||||||
-w | -wn )
|
|
||||||
WINTOOL=n
|
|
||||||
;;
|
|
||||||
-t )
|
-t )
|
||||||
shift
|
shift
|
||||||
TOPDIR=$1
|
TOPDIR=$1
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue