From 528cfb8457d08abf82dbead4faef45be40cfd1ba Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Sun, 30 Aug 2020 23:40:02 -0700 Subject: [PATCH] tools/mkexport.sh: Remove WINTOOL and related option since it isn't used anymore after: commit bd656888f26c92e8832f0e76b395a5ece7704530 Author: Xiang Xiao 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 --- tools/README.txt | 2 +- tools/mkexport.sh | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/tools/README.txt b/tools/README.txt index 3a70e5611f..483c2c140e 100644 --- a/tools/README.txt +++ b/tools/README.txt @@ -227,7 +227,7 @@ mkexport.sh and Makefile.export Makefile.export is used only by the mkexport.sh script to parse out options from the top-level Make.defs file. - USAGE: tools/mkexport.sh [-d] [-z] [-u] [-w|wy|wn] -t [-x ] -l "lib1 [lib2 [lib3 ...]]" + USAGE: tools/mkexport.sh [-d] [-z] [-u] -t [-x ] -l "lib1 [lib2 [lib3 ...]]" 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 diff --git a/tools/mkexport.sh b/tools/mkexport.sh index e3b54a8f76..dc40f6d0b8 100755 --- a/tools/mkexport.sh +++ b/tools/mkexport.sh @@ -34,7 +34,7 @@ # Get the input parameter list -USAGE="USAGE: $0 [-d] [-z] [-u] [-w|wy|wn] -t [-x ] [-a ] [-m ] -l \"lib1 [lib2 [lib3 ...]]\"" +USAGE="USAGE: $0 [-d] [-z] [-u] [-t [-x ] [-a ] [-m ] -l \"lib1 [lib2 [lib3 ...]]\"" unset TOPDIR unset LIBLIST unset TGZ @@ -42,7 +42,6 @@ unset APPDIR unset BOARDDIR USRONLY=n -WINTOOL=n LIBEXT=.a while [ ! -z "$1" ]; do @@ -66,12 +65,6 @@ while [ ! -z "$1" ]; do shift MAKE="$1" ;; - -wy ) - WINTOOL=y - ;; - -w | -wn ) - WINTOOL=n - ;; -t ) shift TOPDIR=$1