From: Mirko Vogt Date: Fri, 23 Jan 2009 22:52:03 +0000 (+0000) Subject: fixed script in uci-defaults for enlightenment X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=d024b138d995594d7cf4e14042c58b7d206aff51;p=openwrt%2Fsvn-archive%2Ffeeds.git fixed script in uci-defaults for enlightenment SVN-Revision: 14159 --- diff --git a/efl/enlightenment/Makefile b/efl/enlightenment/Makefile index aaa96f3..90afef1 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 0c8852f..d253591 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