diff options
author | Barry Jackson <barjac@mageia.org> | 2016-09-10 14:50:21 +0100 |
---|---|---|
committer | Barry Jackson <barjac@mageia.org> | 2016-09-10 14:50:21 +0100 |
commit | 14e345e1c202db8e451b16d2a5990a4669fce423 (patch) | |
tree | fe5e2d67c4813acaa52157db57cb2fe83675a2a0 | |
parent | 94f32ce3674c1d6239f63026d5074f4f79057876 (diff) | |
download | theme-14e345e1c202db8e451b16d2a5990a4669fce423.tar theme-14e345e1c202db8e451b16d2a5990a4669fce423.tar.gz theme-14e345e1c202db8e451b16d2a5990a4669fce423.tar.bz2 theme-14e345e1c202db8e451b16d2a5990a4669fce423.tar.xz theme-14e345e1c202db8e451b16d2a5990a4669fce423.zip |
dont create or install .jpg backgrounds in Makefile
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -16,9 +16,9 @@ scripts: @for i in */gfxboot/*.png ; do \ echo \(gimp-normalize-to-bootsplash 1.0 \"$$i\" \"`dirname $$i`/`basename $$i .png`.jpg\"\) >> tmp-gimp-command; \ done - @for i in */background/*.png ; do \ - echo \(gimp-convert-to-jpeg 0.98 \"$$i\" \"`dirname $$i`/`basename $$i .png`.jpg\"\) >> tmp-gimp-command; \ - done +# @for i in */background/*.png ; do \ +# echo \(gimp-convert-to-jpeg 0.98 \"$$i\" \"`dirname $$i`/`basename $$i .png`.jpg\"\) >> tmp-gimp-command; \ +# done @echo \(gimp-quit 1\) >> tmp-gimp-command @echo running gimp to convert images @cat tmp-gimp-command | gimp --console-messages -i -d -b - @@ -39,7 +39,6 @@ install: install -m644 $$t/plymouth/*.plymouth $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ install -m644 $$t/plymouth/*.png $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ install -m644 $$t/background/$$t-*.png $(DESTDIR)$(sharedir)/mga/backgrounds/; \ - install -m644 $$t/background/$$t-*.jpg $(DESTDIR)$(sharedir)/mga/backgrounds/; \ install -d $(DESTDIR)$(sharedir)/gfxboot/themes/$$t; \ install -m644 $$t/gfxboot/*.jpg $(DESTDIR)$(sharedir)/gfxboot/themes/$$t/; \ done |