From 79e3b42c2a12b3e57076101566e06540ebe6a6d6 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 13 Dec 2009 23:17:11 +0000 Subject: Simplify setting COMMON_XSL_DEPS variable: Use $(wildcard ) directly instead of using it to control a conditional. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30008 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/xml/Makefile.inc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/DOCS/xml/Makefile.inc b/DOCS/xml/Makefile.inc index 644dac7083..52cdc31e15 100644 --- a/DOCS/xml/Makefile.inc +++ b/DOCS/xml/Makefile.inc @@ -4,11 +4,7 @@ # Use customized html-chunk.xsl and/or html-single.xsl file if they exist... # Also add html-common.xsl to depends if it exists. -ifeq (html-common.xsl,$(wildcard html-common.xsl)) -COMMON_XSL_DEPS := html-common.xsl ../html-common.xsl -else -COMMON_XSL_DEPS := ../html-common.xsl -endif +COMMON_XSL_DEPS := ../html-common.xsl $(wildcard html-common.xsl) ifeq (html-chunk.xsl,$(wildcard html-chunk.xsl)) HTML_CHUNK_XSL := html-chunk.xsl -- cgit v1.2.3