diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-03-08 17:54:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-11 01:54:07 +0100 |
commit | 2e5605f6fa0a2a633afaa096bd60befb5e4ab431 (patch) | |
tree | e08b44619fc8b39ae2ac355fe996de546cc5e54a /common.mak | |
parent | c5c4ca6bc88135f5e819dd707fee68a01c9ffe08 (diff) | |
download | ffmpeg-2e5605f6fa0a2a633afaa096bd60befb5e4ab431.tar.gz |
x86: Makefile: fix DBG parameter evaluation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index 20b7fa3103..eac8bd9937 100644 --- a/common.mak +++ b/common.mak @@ -7,7 +7,7 @@ all: all-yes DEFAULT_YASMD=.dbg -ifeq (1, DBG) +ifeq ($(DBG),1) YASMD=$(DEFAULT_YASMD) else YASMD= |