fixed install rules to treat style.css as optional
authorStefan Kost <ensonic@users.sourceforge.net>
Tue, 25 Jan 2005 13:09:06 +0000 (13:09 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Tue, 25 Jan 2005 13:09:06 +0000 (13:09 +0000)
Original commit message from CVS:
fixed install rules to treat style.css as optional

ChangeLog
docs/gst/Makefile.am
docs/libs/Makefile.am

index 40a78cd223709f355c808f2b05138b82afb348a9..235b24f590ba04f04cc3fb04051518c2dd72c34f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 39a4cd6d2141ae4e0dbbf358eb82fe9883e646b3..56e94ccf2f1d203dc9e64ce520c9ab8bca5920cc 100644 (file)
@@ -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
 
index 05ce7bad6a78099b04372d7423daf7722b29a859..ee0e4e3f05a47405a20bc802d9dc1d69c1bc36b1 100644 (file)
@@ -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