diff options
Diffstat (limited to 'tools/sed/.svn')
-rw-r--r-- | tools/sed/.svn/entries | 62 | ||||
-rw-r--r-- | tools/sed/.svn/prop-base/Makefile.svn-base | 5 | ||||
-rw-r--r-- | tools/sed/.svn/text-base/Makefile.svn-base | 43 |
3 files changed, 110 insertions, 0 deletions
diff --git a/tools/sed/.svn/entries b/tools/sed/.svn/entries new file mode 100644 index 0000000..261065f --- /dev/null +++ b/tools/sed/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/sed +svn://svn.openwrt.org/openwrt + + + +2013-02-28T00:52:28.922368Z +35822 +luka + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +Makefile +file + + + + +2013-03-17T12:13:22.000000Z +dc85afb1348967f6997a328f6a09b7ce +2013-02-28T00:52:28.922368Z +35822 +luka +has-props + + + + + + + + + + + + + + + + + + + + +925 + diff --git a/tools/sed/.svn/prop-base/Makefile.svn-base b/tools/sed/.svn/prop-base/Makefile.svn-base new file mode 100644 index 0000000..bdbd305 --- /dev/null +++ b/tools/sed/.svn/prop-base/Makefile.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:eol-style +V 6 +native +END diff --git a/tools/sed/.svn/text-base/Makefile.svn-base b/tools/sed/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..2716954 --- /dev/null +++ b/tools/sed/.svn/text-base/Makefile.svn-base @@ -0,0 +1,43 @@ +# +# Copyright (C) 2006-2013 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=sed +PKG_VERSION:=4.2.2 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=@GNU/$(PKG_NAME) +PKG_MD5SUM:=7ffe1c7cdc3233e1e0c4b502df253974 +PKG_CAT:=bzcat +export SED:= + +HOST_BUILD_PARALLEL:=1 + +include $(INCLUDE_DIR)/host-build.mk + +HOST_CONFIGURE_ARGS += \ + --disable-acl \ + --disable-nls \ + +HOST_CONFIGURE_VARS += \ + ac_cv_search_setfilecon=no \ + ac_cv_header_selinux_context_h=no \ + ac_cv_header_selinux_selinux_h=no \ + +define Host/Compile + +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" LDFLAGS="$(HOST_STATIC_LINKING)" +endef + +define Host/Install + $(INSTALL_BIN) $(HOST_BUILD_DIR)/sed/sed $(STAGING_DIR_HOST)/bin/ +endef + +define Host/Clean + rm -f $(STAGING_DIR_HOST)/bin/sed +endef + +$(eval $(call HostBuild)) |