summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-07-10 00:29:33 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-10 00:29:33 +0000
commitdea4953d82ec03799c7b1e93c1bc390bdaf76ee3 (patch)
treeed64d700b9f8bc5be2e7f90b50f72bddf47dded7 /Makefile
parent7b0cd9ee2b09e5c6d7e11b3cc05e7839b3809b40 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 0d355fbf82..cd42721323 100644
--- 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