diff options
author | Måns Rullgård <mans@mansr.com> | 2008-04-07 22:17:47 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-04-07 22:17:47 +0000 |
commit | 8e255b8bda61e99e18d8aed456fa0131012acca6 (patch) | |
tree | 7b9db12a10a17cdaa5419f46a5810b132df05d94 /common.mak | |
parent | dbe6c6ff00bf57b709d0705a21efe64927d6e9dc (diff) | |
download | ffmpeg-8e255b8bda61e99e18d8aed456fa0131012acca6.tar.gz |
replace some ifeq with prettier ifdef
Originally committed as revision 12764 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 66297ef5a1..62dddcd5cf 100644 --- a/common.mak +++ b/common.mak @@ -4,7 +4,7 @@ all: # make "all" default target -ifeq ($(SUBDIR),) +ifndef SUBDIR vpath %.c $(SRC_DIR) vpath %.h $(SRC_DIR) vpath %.S $(SRC_DIR) |