diff options
author | Steven M. Schultz <sms@2bsd.com> | 2005-02-27 02:46:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-02-27 02:46:30 +0000 |
commit | c80d990fa91cb969286d66299d8f76e975a90d8e (patch) | |
tree | 65e133ee81351399cf3fbb3f0bdc8ce44d266d85 | |
parent | da723fd2ddfa549197e5178cd95e48861c01615b (diff) | |
download | ffmpeg-c80d990fa91cb969286d66299d8f76e975a90d8e.tar.gz |
changes 'make' in a couple places to $(MAKE) patch by ("Steven M. Schultz" <sms 2bsd com>)
Originally committed as revision 3988 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -168,10 +168,10 @@ installlib: dep: depend depend: .depend - make -C libavcodec depend - make -C libavformat depend + $(MAKE) -C libavcodec depend + $(MAKE) -C libavformat depend ifeq ($(BUILD_VHOOK),yes) - make -C vhook depend + $(MAKE) -C vhook depend endif .depend: $(SRCS) |