]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/libudns/ignore_unknown_options.patch
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / libudns / ignore_unknown_options.patch
1 diff --git a/configure b/configure
2 index dda98b3ab..6f5f8a3c8 100644
3 --- a/configure
4 +++ b/configure
5 @@ -25,10 +25,9 @@ fi
6 enable() {
7 opt=`echo "$1" | sed 's/^--[^-]*-//'`
8 case "$opt" in
9 - ipv6) ;;
10 - *) echo "configure: unrecognized option \`$1'" >&2; exit 1;;
11 + ipv6) eval enable_$opt=$2 ;;
12 + *) echo "configure: unrecognized option \`$1'" >&2;;
13 esac
14 - eval enable_$opt=$2
15 }
16
17 while [ $# -gt 0 ]; do
18 @@ -50,7 +49,7 @@ Optional features (all enabled by default if system supports a feature):
19 EOF
20 exit 0
21 ;;
22 - *) echo "configure: unknown option \`$1'" >&2; exit 1 ;;
23 + *) echo "configure: unknown option \`$1'" >&2;;
24 esac
25 shift
26 done