summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2013-03-18 09:02:35 +0100
committerWerner Koch <wk@gnupg.org>2013-03-18 09:02:35 +0100
commitd313255350e6f397500ce23714ddec8780f32449 (patch)
tree5baca929ae30253b44823b8da59068837870c801
parente0139f73600ed584f23d57a2baf768e32ea900ec (diff)
downloadlibgcrypt-d313255350e6f397500ce23714ddec8780f32449.tar.gz
mpi: Make using gcc's -Ofast easier.
* cipher/Makefile.am (o_flag_munging): Take -Ofast in account. -- GnuPG-bug-id: 1468
-rw-r--r--cipher/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/Makefile.am b/cipher/Makefile.am
index cbeace87..f8c39fb8 100644
--- a/cipher/Makefile.am
+++ b/cipher/Makefile.am
@@ -68,7 +68,7 @@ rfc2268.c \
camellia.c camellia.h camellia-glue.c
if ENABLE_O_FLAG_MUNGING
-o_flag_munging = sed -e 's/-O[2-9s]*/-O1/g'
+o_flag_munging = sed -e 's/-O([2-9s]|fast)*/-O1/g'
else
o_flag_munging = cat
endif