fixing automake warnings

Original commit message from CVS:
fixing automake warnings
This commit is contained in:
Thomas Vander Stichele 2004-02-11 18:21:51 +00:00
parent 76412a5a56
commit d1525abbfc
4 changed files with 14 additions and 8 deletions

View file

@ -1,3 +1,10 @@
2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
* docs/manuals.mak:
fix automake complaints
* gst-element-check.m4:
fix unquotedness
2004-02-11 David Schleef <ds@schleef.org>
* docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.

View file

@ -39,29 +39,28 @@ all: html ps pdf
# can we generate HTML ?
if DOC_HTML
HTML_DAT = html
html: html/index.html
HTML_TARGET = html/index.html
else #!DOC_HTML
HTML_DAT =
html:
HTML_TARGET =
endif #DOC_HTML
html: $(HTML_TARGET)
# can we generate PS ?
if DOC_PS
PS_DAT = $(DOC).ps
ps: $(DOC).ps
else #!DOC_PS
PS_DAT =
ps:
endif #DOC_PS
ps: $(PS_DAT)
# can we generate PDF ?
if DOC_PDF
PDF_DAT = $(DOC).pdf
pdf: $(DOC).pdf
else #!DOC_PDF
PDF_DAT =
pdf:
endif #DOC_PDF
pdf: $(PDF_DAT)
debug:
@echo "outputting some useful debug information"

View file

@ -4,7 +4,7 @@ dnl Last modification: 23/10/2002
dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
AC_DEFUN(AM_GST_ELEMENT_CHECK,
AC_DEFUN([AM_GST_ELEMENT_CHECK],
[
AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
if test "x$GST_INSPECT" != "x"; then

View file

@ -4,7 +4,7 @@ dnl Last modification: 23/10/2002
dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
AC_DEFUN(AM_GST_ELEMENT_CHECK,
AC_DEFUN([AM_GST_ELEMENT_CHECK],
[
AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
if test "x$GST_INSPECT" != "x"; then