mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
Remove silly TEST variable that is used in one line but not directly above.
Originally committed as revision 5700 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7b0cd9ee2b
commit
dea4953d82
8
Makefile
8
Makefile
@ -54,12 +54,6 @@ VHOOK=videohook
|
||||
INSTALLVHOOK=install-vhook
|
||||
endif
|
||||
|
||||
ifeq ($(TARGET_OS), SunOS)
|
||||
TEST=/usr/bin/test
|
||||
else
|
||||
TEST=test
|
||||
endif
|
||||
|
||||
ifeq ($(BUILD_DOC),yes)
|
||||
DOC=documentation
|
||||
endif
|
||||
@ -206,7 +200,7 @@ endif
|
||||
|
||||
.libs: lib
|
||||
@test -f .libs || touch .libs
|
||||
@for i in $(DEP_LIBS) ; do if $(TEST) $$i -nt .libs ; then touch .libs; fi ; done
|
||||
@for i in $(DEP_LIBS) ; do if test $$i -nt .libs ; then touch .libs; fi ; done
|
||||
|
||||
clean:
|
||||
$(MAKE) -C libavutil clean
|
||||
|
Loading…
Reference in New Issue
Block a user