mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 19:25:18 +00:00
fixed install rules to treat style.css as optional
Original commit message from CVS: fixed install rules to treat style.css as optional
This commit is contained in:
parent
c44852739c
commit
8f9fca9ea9
3 changed files with 22 additions and 8 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-01-25 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* docs/gst/Makefile.am:
|
||||
* docs/libs/Makefile.am:
|
||||
fixed install rules to treat style.css as optional
|
||||
|
||||
2005-01-24 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* docs/gst/Makefile.am:
|
||||
|
|
|
@ -309,8 +309,10 @@ install-data-local:
|
|||
$(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
|
||||
echo '-- Installing $(srcdir)/html/index.sgml' ; \
|
||||
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
|
||||
echo '-- Installing $(srcdir)/html/style.css' ; \
|
||||
$(INSTALL_DATA) $(srcdir)/html/style.css $(DESTDIR)$(TARGET_DIR); \
|
||||
if test -e $(srcdir)/html/style.css; then \
|
||||
echo '-- Installing $(srcdir)/html/style.css' ; \
|
||||
$(INSTALL_DATA) $(srcdir)/html/style.css $(DESTDIR)$(TARGET_DIR); \
|
||||
fi; \
|
||||
fi)
|
||||
uninstall-local:
|
||||
(installfiles=`echo ./html/*.html`; \
|
||||
|
@ -334,8 +336,10 @@ uninstall-local:
|
|||
rm -f $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
|
||||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \
|
||||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/style.css' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/style.css; \
|
||||
if test -e $(DESTDIR)$(TARGET_DIR)/style.css; then \
|
||||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/style.css' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/style.css; \
|
||||
fi; \
|
||||
fi)
|
||||
if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi
|
||||
|
||||
|
|
|
@ -275,8 +275,10 @@ install-data-local:
|
|||
$(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
|
||||
echo '-- Installing $(srcdir)/html/index.sgml' ; \
|
||||
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
|
||||
echo '-- Installing $(srcdir)/html/style.css' ; \
|
||||
$(INSTALL_DATA) $(srcdir)/html/style.css $(DESTDIR)$(TARGET_DIR); \
|
||||
if test -e $(srcdir)/html/style.css; then \
|
||||
echo '-- Installing $(srcdir)/html/style.css' ; \
|
||||
$(INSTALL_DATA) $(srcdir)/html/style.css $(DESTDIR)$(TARGET_DIR); \
|
||||
fi; \
|
||||
fi)
|
||||
uninstall-local:
|
||||
(installfiles=`echo ./html/*.html`; \
|
||||
|
@ -300,8 +302,10 @@ uninstall-local:
|
|||
rm -f $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
|
||||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \
|
||||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/style.css' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/style.css; \
|
||||
if test -e $(DESTDIR)$(TARGET_DIR)/style.css; then \
|
||||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/style.css' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/style.css; \
|
||||
fi; \
|
||||
fi)
|
||||
if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue