From patchwork Fri Mar 4 19:24:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Langasek X-Patchwork-Id: 378 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:42:02 -0000 Delivered-To: patches@linaro.org Received: by 10.224.60.68 with SMTP id o4cs24876qah; Fri, 4 Mar 2011 11:24:56 -0800 (PST) Received: by 10.52.74.226 with SMTP id x2mr1515752vdv.264.1299266696520; Fri, 04 Mar 2011 11:24:56 -0800 (PST) Received: from becquer.dodds.net (becquer.dodds.net [207.224.24.209]) by mx.google.com with ESMTP id n20si3867875vcn.170.2011.03.04.11.24.54; Fri, 04 Mar 2011 11:24:55 -0800 (PST) Received-SPF: pass (google.com: domain of vorlon@virgil.dodds.net designates 207.224.24.209 as permitted sender) client-ip=207.224.24.209; Authentication-Results: mx.google.com; spf=pass (google.com: domain of vorlon@virgil.dodds.net designates 207.224.24.209 as permitted sender) smtp.mail=vorlon@virgil.dodds.net Received: from virgil.dodds.net (unknown [192.168.15.11]) by becquer.dodds.net (Postfix) with ESMTPA id E1FF9251D8; Fri, 4 Mar 2011 11:24:53 -0800 (PST) Received: by virgil.dodds.net (Postfix, from userid 1000) id A03F0400F2; Fri, 4 Mar 2011 11:24:47 -0800 (PST) From: Steve Langasek To: Tom Gall Cc: patches@linaro.org, Steve Langasek Subject: [PATCH 2/7] don't set -marm Date: Fri, 4 Mar 2011 11:24:36 -0800 Message-Id: <1299266681-13266-2-git-send-email-steve.langasek@linaro.org> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1299266681-13266-1-git-send-email-steve.langasek@linaro.org> References: <1299266681-13266-1-git-send-email-steve.langasek@linaro.org> From: Steve Langasek 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 --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 \