Skip to content
Snippets Groups Projects
Commit dea4953d authored by Diego Biurrun's avatar Diego Biurrun
Browse files

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
parent 7b0cd9ee
No related branches found
No related tags found
No related merge requests found
...@@ -54,12 +54,6 @@ VHOOK=videohook ...@@ -54,12 +54,6 @@ VHOOK=videohook
INSTALLVHOOK=install-vhook INSTALLVHOOK=install-vhook
endif endif
ifeq ($(TARGET_OS), SunOS)
TEST=/usr/bin/test
else
TEST=test
endif
ifeq ($(BUILD_DOC),yes) ifeq ($(BUILD_DOC),yes)
DOC=documentation DOC=documentation
endif endif
...@@ -206,7 +200,7 @@ endif ...@@ -206,7 +200,7 @@ endif
.libs: lib .libs: lib
@test -f .libs || touch .libs @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: clean:
$(MAKE) -C libavutil clean $(MAKE) -C libavutil clean
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment