]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - Makefile.PL
fix duplicate expansion of comments
[git.ikiwiki.info.git] / Makefile.PL
index bee9dfa11817d52aba1985fd7022d2a80d33f4b7..020bc56678925f0b99192d064110d0069530cda0 100755 (executable)
@@ -112,10 +112,13 @@ underlay_install:
 
        # Themes have their base.css (if present) and then
        # style.css appended to the normal one.
+       # Or, fullstyle.css in a theme replaces the normal style.css.
        for theme in themes/*; do \
                install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme; \
                for file in $$theme/*; do \
-                       if echo "$$file" | grep -q style.css; then \
+                       if echo "$$file" | grep -q fullstyle.css; then \
+                               cp $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme/style.css; \
+                       elif echo "$$file" | grep -q style.css; then \
                                (cat doc/style.css; cat $$theme/base.css 2>/dev/null; cat $$file) > $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme/style.css; \
                        elif echo "$$file" | grep -q base.css; then \
                                :; \