Commit 0827966a authored by diego's avatar diego

Remove silly TEST variable that is used in one line but not directly above.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5700 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ec427adf
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment