diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2015-05-02 10:34:15 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2015-05-02 10:52:30 +0200 |
commit | 320029f1756260c61d10d88f82a85bc7f9f4249c (patch) | |
tree | e4fa982a821b461c40784f743d91ba76496a0e7c | |
parent | c9ef1e6ae94381bc10c5d62f5e08b95102cf8ad9 (diff) | |
download | theme-320029f1756260c61d10d88f82a85bc7f9f4249c.tar theme-320029f1756260c61d10d88f82a85bc7f9f4249c.tar.gz theme-320029f1756260c61d10d88f82a85bc7f9f4249c.tar.bz2 theme-320029f1756260c61d10d88f82a85bc7f9f4249c.tar.xz theme-320029f1756260c61d10d88f82a85bc7f9f4249c.zip |
Install theme JPG backgrounds at the same time as the PNG backgrounds
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,6 @@ install: mkdir -p $(DESTDIR)$(sharedir)/mga/backgrounds install -m 644 common/screensaver/*.jpg $(DESTDIR)$(sharedir)/mga/screensaver install -m 644 extra-backgrounds/*.jpg $(DESTDIR)$(sharedir)/mga/backgrounds - install -m644 */background/*.jpg $(DESTDIR)$(sharedir)/mga/backgrounds @for t in $(THEMES); do \ set -x; set -e; \ install -d $(DESTDIR)$(sharedir)/plymouth/themes/$$t; \ @@ -41,6 +40,7 @@ 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 |