diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-06-18 01:33:23 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-06-18 01:33:23 +0200 |
commit | 3edd15fd79642bf133045b222a0fda78d8f1e73f (patch) | |
tree | 43242bce7127b81d9eb5bcd59d9e8d4b3798b7c9 | |
parent | cast unused parameter to void (diff) | |
download | libgamma-3edd15fd79642bf133045b222a0fda78d8f1e73f.tar.gz libgamma-3edd15fd79642bf133045b222a0fda78d8f1e73f.tar.bz2 libgamma-3edd15fd79642bf133045b222a0fda78d8f1e73f.tar.xz |
use -O and not -O6 when GCC is not used
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ else ifeq ($(CC),gcc) OPTIMISE = -Ofast else -OPTIMISE = -O6 +OPTIMISE = -O endif endif |