]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Remove silly TEST variable that is used in one line but not directly above.
authordiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 10 Jul 2006 00:29:33 +0000 (00:29 +0000)
committerdiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 10 Jul 2006 00:29:33 +0000 (00:29 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5700 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

Makefile

index 0d355fbf82bba115f998633474941b3293fe41d3..cd42721323af0d8d09404d14e8a515fd63347b92 100644 (file)
--- a/Makefile
+++ b/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