From: Adam Sutton Date: Tue, 11 Sep 2012 18:27:15 +0000 (+0100) Subject: Correct mistake in the Makefile (added during configure update) that causes high... X-Git-Tag: 3.3~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bae7aaa7d6be6045bab0eddd44f4fcab078776a7;p=thirdparty%2Ftvheadend.git Correct mistake in the Makefile (added during configure update) that causes high CPU load on some architectures due to missing optimisations. --- diff --git a/Makefile b/Makefile index 6cd41af53..ae40e5cba 100644 --- a/Makefile +++ b/Makefile @@ -173,8 +173,8 @@ SRCS-$(CONFIG_AVAHI) += src/avahi.c # Optimised code SRCS-${CONFIG_MMX} += src/ffdecsa/ffdecsa_mmx.c SRCS-${CONFIG_SSE2} += src/ffdecsa/ffdecsa_sse2.c -${BUILDDIR}/src/ffdecsa/ffdecsa_mmx.o : CFLAGS = -mmmx -${BUILDDIR}/src/ffdecsa/ffdecsa_sse2.o : CFLAGS = -msse2 +${BUILDDIR}/src/ffdecsa/ffdecsa_mmx.o : CFLAGS += -mmmx +${BUILDDIR}/src/ffdecsa/ffdecsa_sse2.o : CFLAGS += -msse2 # File bundles SRCS-${CONFIG_BUNDLE} += bundle.c