diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2008-09-10 13:18:12 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2008-09-10 13:18:12 +0000 |
commit | 1c2f0f09c42c12e46399fd3ad69a95c868bcf1c5 (patch) | |
tree | 05775a2dfa3ec01c904a7925b5e7aad30d3ca33b | |
parent | 91dd36f983be7005139845134cde01382876841a (diff) | |
download | theme-1c2f0f09c42c12e46399fd3ad69a95c868bcf1c5.tar theme-1c2f0f09c42c12e46399fd3ad69a95c868bcf1c5.tar.gz theme-1c2f0f09c42c12e46399fd3ad69a95c868bcf1c5.tar.bz2 theme-1c2f0f09c42c12e46399fd3ad69a95c868bcf1c5.tar.xz theme-1c2f0f09c42c12e46399fd3ad69a95c868bcf1c5.zip |
- Fix the way hardlink is created
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ install: install -d $(prefix)/$(configdir)/bootsplash/themes/$$t/config; \ install -m644 common/bootsplash/config/* $(prefix)$(configdir)/bootsplash/themes/$$t/config/; \ if [ ! -f $(prefix)$(sharedir)/bootsplash/themes/$$t/images/bootsplash-640x480.jpg ]; then \ - ln -f bootsplash-800x600.jpg $(prefix)$(sharedir)/bootsplash/themes/$$t/images/bootsplash-640x480.jpg ; \ + ln -f $(prefix)$(sharedir)/bootsplash/themes/$$t/images/bootsplash-800x600.jpg $(prefix)$(sharedir)/bootsplash/themes/$$t/images/bootsplash-640x480.jpg ; \ fi; \ if [ -d $$t/bootsplash/config ]; then \ install -m644 $$t/bootsplash/config/* $(prefix)$(configdir)/bootsplash/themes/$$t/config/; \ |