summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2013-04-18 14:40:43 +0200
committerWerner Koch <wk@gnupg.org>2013-04-18 16:51:07 +0200
commit411e6ef17db4d5105e1d02d37759793a9dc87c32 (patch)
tree0b674304c6c3ce14726c328ccf3654a7be981365
parentf1f016855418aae561ede4472590d45a24ab4476 (diff)
downloadlibgcrypt-411e6ef17db4d5105e1d02d37759793a9dc87c32.tar.gz
mpi: Yet another fix to get option flag munging right.
* cipher/Makefile.am (o_flag_munging): Yet another fix. -- (cherry picked from commit 03557687a09b9c8878c77cbfdd0f5049940c72da)
-rw-r--r--cipher/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/Makefile.am b/cipher/Makefile.am
index 1109c9de..76cdc96a 100644
--- a/cipher/Makefile.am
+++ b/cipher/Makefile.am
@@ -69,7 +69,7 @@ rfc2268.c \
camellia.c camellia.h camellia-glue.c
if ENABLE_O_FLAG_MUNGING
-o_flag_munging = sed -e 's/-O([2-9s]|fast)*/-O1/g'
+o_flag_munging = sed -e 's/-O\([2-9s][2-9s]*\)/-O1/' -e 's/-Ofast/-O1/g'
else
o_flag_munging = cat
endif