From 2b11debc934bcc2e4dd5e9ded45be4055a1f1ed4 Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Fri, 23 Jan 2009 22:52:03 +0000 Subject: [PATCH] fixed script in uci-defaults for enlightenment SVN-Revision: 14159 --- efl/enlightenment/Makefile | 11 ++++++----- efl/enlightenment/files/uci-defaults/x11 | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/efl/enlightenment/Makefile b/efl/enlightenment/Makefile index aaa96f34e2..90afef1a6d 100644 --- a/efl/enlightenment/Makefile +++ b/efl/enlightenment/Makefile @@ -75,11 +75,12 @@ define Package/enlightenment/install $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ $(CP) $(PKG_INSTALL_DIR)/usr/share/* $(1)/usr/share/ $(INSTALL_DATA) ./files/uci-defaults/x11 $(1)/etc/uci-defaults/ - $(if $(CONFIG_E17_ILLUME),echo "illume" >> $(1)/etc/uci-defaults/x11) - $(if $(CONFIG_E17_MINIMALIST),echo "minimalist" >> $(1)/etc/uci-defaults/x11) - $(if $(CONFIG_E17_NETBOOK),echo "netbook" >> $(1)/etc/uci-defaults/x11) - $(if $(CONFIG_E17_SCALEABLE),echo "scaleable" >> $(1)/etc/uci-defaults/x11) - $(if $(CONFIG_E17_STANDARD),echo "standard" >> $(1)/etc/uci-defaults/x11) + $(if $(CONFIG_E17_ILLUME),echo -n "illume" >> $(1)/etc/uci-defaults/x11) + $(if $(CONFIG_E17_MINIMALIST),echo -n "minimalist" >> $(1)/etc/uci-defaults/x11) + $(if $(CONFIG_E17_NETBOOK),echo -n "netbook" >> $(1)/etc/uci-defaults/x11) + $(if $(CONFIG_E17_SCALEABLE),echo -n "scaleable" >> $(1)/etc/uci-defaults/x11) + $(if $(CONFIG_E17_STANDARD),echo -n "standard" >> $(1)/etc/uci-defaults/x11) + echo "'" >> $(1)/etc/uci-defaults/x11 find $(1)/ -name *.la | xargs rm -f find $(1)/ -name *.a | xargs rm -f endef diff --git a/efl/enlightenment/files/uci-defaults/x11 b/efl/enlightenment/files/uci-defaults/x11 index 0c8852f8ac..d2535919c4 100644 --- a/efl/enlightenment/files/uci-defaults/x11 +++ b/efl/enlightenment/files/uci-defaults/x11 @@ -1 +1 @@ -uci set x11.@desktop[0].autostart=enlightenment_start -profile \ No newline at end of file +uci set x11.@desktop[0].autostart='enlightenment_start -profile \ No newline at end of file -- 2.30.2