mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
fixing automake warnings
Original commit message from CVS: fixing automake warnings
This commit is contained in:
parent
76412a5a56
commit
d1525abbfc
4 changed files with 14 additions and 8 deletions
|
@ -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.
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue