blob: ece55e80cdac67f31bf10d6e303c2f525b7004b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
diff --git a/tools/nasm-filter.sh b/tools/nasm-filter.sh
index 5ec9ba3..fcc4971 100755
--- a/tools/nasm-filter.sh
+++ b/tools/nasm-filter.sh
@@ -15,6 +15,11 @@ while [ -n "$*" ]; do
shift
shift
;;
+ -isysroot )
+ # Unsupported options with arg
+ shift
+ shift
+ ;;
--prefix* )
# Supported options without arg
options="$options $1"
diff --git a/tools/yasm-filter.sh b/tools/yasm-filter.sh
index c33952a..b99bfc3 100755
--- a/tools/yasm-filter.sh
+++ b/tools/yasm-filter.sh
@@ -10,6 +10,11 @@ while [ -n "$*" ]; do
shift
shift
;;
+ -isysroot )
+ # Unsupported options with arg
+ shift
+ shift
+ ;;
-I* | -i* | --prefix* )
# Supported options without arg
options="$options $1"
|