summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-02-27 02:47:05 +0000
committerMåns Rullgård <mans@mansr.com>2006-02-27 02:47:05 +0000
commit1540cfdcce0ada88ddf02e1b4c450286aad04a8f (patch)
tree196f17249681735bc8e27bc8a00c6607019c02e0
parent59f45163dff9842fe2a771566504ae83a2df6f46 (diff)
SRCS must be set using := or things break when ASM_OBJS is added to OBJS
Originally committed as revision 5069 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--common.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak
index e09cadd0c8..3bcf1e96e6 100644
--- a/common.mak
+++ b/common.mak
@@ -19,7 +19,7 @@ ifeq ($(TARGET_ARCH_SPARC64),yes)
CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
endif
-SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp)
+SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp)
OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS)
STATIC_OBJS := $(OBJS) $(STATIC_OBJS)
SHARED_OBJS := $(OBJS) $(SHARED_OBJS)