Fix palette and backdrops installation in dt/shared with proper symlinks

This commit is contained in:
Jon Trulson
2019-12-04 13:21:31 -07:00
parent ec8f4b7464
commit 21cf53c0d0
6 changed files with 17 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ include ../../templates/backdrops.am
# Setup a symlink from C -> en_US.UTF-8
install-data-hook:
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/backdrops/desc.en_US.UTF-8
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/backdrops/ && $(LN_S) desc.C desc.en_US.UTF-8
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/backdrops/desc.en_US.UTF-8
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/backdrops/ && $(LN_S) desc.C desc.en_US.UTF-8

View File

@@ -5,7 +5,7 @@ include ../../templates/palettes.am
# link the C version to en_US.UTF-8
install-data-hook:
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/palettes/desc.en_US.UTF-8
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/palettes/ && $(LN_S) desc.C desc.en_US.UTF-8
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/palettes/desc.en_US.UTF-8
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/palettes/ && $(LN_S) desc.C desc.en_US.UTF-8