summaryrefslogtreecommitdiffstats
path: root/patches/01_better-handle-unrecognized-options.patch
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-06-16 10:06:29 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-06-16 10:06:29 (EDT)
commit1d9bfde29afeec187d5e4faecde4f8f1bf18c1ea (patch)
tree4f17bc32b0fae207d311c382a1339b18968834bc /patches/01_better-handle-unrecognized-options.patch
parent56c87a3fd5d427eaab0903349af4d2a897ff18ba (diff)
Drop patches applied upstream.
Diffstat (limited to 'patches/01_better-handle-unrecognized-options.patch')
-rw-r--r--patches/01_better-handle-unrecognized-options.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/patches/01_better-handle-unrecognized-options.patch b/patches/01_better-handle-unrecognized-options.patch
deleted file mode 100644
index 87f4f1a..0000000
--- a/patches/01_better-handle-unrecognized-options.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From: "P. J. McDermott" <pjm@nac.net>
-Description: Better handle unecognized options
- optind needs to be incremented for every option.
-
---- src.orig/configure 2012-11-16 15:41:08.000000000 -0500
-+++ src/configure 2013-06-02 17:19:30.619119593 -0400
-@@ -256,9 +256,7 @@
- if [ ${?} -ne 0 ]; then
- printf 'warning: unrecognized %s name: %s\n' \
- "${_type}" "${_opt}" >&2
-- continue
-- fi
-- if ${_optarg_set}; then
-+ elif ${_optarg_set}; then
- _opt="$(printf '%s' "${_opt}" | tr -c '[a-z0-9]' '_')"
- eval "${_opt}"=\"\$\{_optarg\}\"
- else