diff mbox

[2/7] don't set -marm

Message ID 1299266681-13266-2-git-send-email-steve.langasek@linaro.org
State New
Headers show

Commit Message

Steve Langasek March 4, 2011, 7:24 p.m. UTC
From: Steve Langasek <steve.langasek@canonical.com>

Don't hard-code -marm; we want the package to be buildable on all archs,
and we also want to fix the Thumb-2 compatibility issues here.
---
 Makefile.am |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/Makefile.am b/Makefile.am
index f95cafe..59814d2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,9 +7,9 @@  nodist_include_HEADERS = jconfig.h
 HDRS = jchuff.h jdct.h jdhuff.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
 	jpegint.h jpeglib.h jversion.h jsimd.h jsimddct.h jpegcomp.h
 
-libjpeg_la_CFLAGS = -marm $(CFLAGS)
+libjpeg_la_CFLAGS = $(CFLAGS)
 
-libturbojpeg_la_CFLAGS = -marm $(CFLAGS)
+libturbojpeg_la_CFLAGS = $(CFLAGS)
 
 libjpeg_la_SOURCES = $(HDRS) jcapimin.c jcapistd.c jccoefct.c jccolor.c \
 	jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \