[packages] ices: fix whitespace in Makefile

git-svn-id: svn://svn.openwrt.org/openwrt/packages@18846 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2009-12-19 12:20:58 +00:00
parent d432fd2fb8
commit fec931ce95

View File

@ -27,14 +27,14 @@ define Package/ices
endef endef
define Package/ices/description define Package/ices/description
ices is a command line source client for Icecast media streaming servers. ices is a command line source client for Icecast media streaming servers.
It began as the successor of the old "shout" utility, and has since gained a It began as the successor of the old "shout" utility, and has since gained a
lot of useful features. lot of useful features.
endef endef
define Package/ices/install define Package/ices/install
$(INSTALL_DIR) $(1)/usr/bin $(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/ $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
endef endef
CONFIGURE_ARGS+= \ CONFIGURE_ARGS+= \
@ -43,15 +43,15 @@ CONFIGURE_ARGS+= \
define Build/Configure define Build/Configure
$(call Build/Configure/Default, \ $(call Build/Configure/Default, \
LDFLAGS="$(TARGET_LDFLAGS) -lz -lm" \ LDFLAGS="$(TARGET_LDFLAGS) -lz -lm" \
) )
endef endef
define Build/Compile define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \ $(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
LDFLAGS="$(TARGET_LDFLAGS) -lz -lm" LDFLAGS="$(TARGET_LDFLAGS) -lz -lm"
endef endef
$(eval $(call BuildPackage,ices)) $(eval $(call BuildPackage,ices))