diff -Nru sed-4.2.1/debian/changelog sed-4.2.1/debian/changelog
--- sed-4.2.1/debian/changelog	2012-10-01 14:58:42.000000000 +0100
+++ sed-4.2.1/debian/changelog	2012-11-18 00:31:42.000000000 +0000
@@ -1,3 +1,10 @@
+sed (4.2.1-10ubuntu1ma1) quantal; urgency=low
+
+  * Set gettext:any for cross- build-dependencies
+  * Fix to use correct strip when crossing
+
+ -- Wookey <wookey@e102475-lin>  Sun, 18 Nov 2012 00:23:24 +0000
+
 sed (4.2.1-10ubuntu1) quantal; urgency=low
 
   * Update config.guess,sub for aarch64
diff -Nru sed-4.2.1/debian/control sed-4.2.1/debian/control
--- sed-4.2.1/debian/control	2012-10-01 14:58:55.000000000 +0100
+++ sed-4.2.1/debian/control	2012-11-18 00:23:18.000000000 +0000
@@ -4,7 +4,7 @@
 Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
 XSBC-Original-Maintainer: Clint Adams <clint@debian.org>
 Standards-Version: 3.9.2
-Build-Depends: texinfo, gettext, libselinux-dev [linux-any]
+Build-Depends: texinfo, gettext:any, libselinux-dev [linux-any]
 Vcs-Git: git://git.debian.org/users/clint/sed.git
 Vcs-Browser: http://git.debian.org/?p=users/clint/sed.git;a=summary
 Homepage: http://www.gnu.org/software/sed/
diff -Nru sed-4.2.1/debian/rules sed-4.2.1/debian/rules
--- sed-4.2.1/debian/rules	2011-12-30 17:22:26.000000000 +0000
+++ sed-4.2.1/debian/rules	2012-11-18 00:36:26.000000000 +0000
@@ -5,10 +5,13 @@
 docdir		= /usr/share/doc/$(package)
 tmpdir		= $(CURDIR)/debian/tmp
 
+STRIP=strip
+
 DEB_BUILD_GNU_TYPE = $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 DEB_HOST_GNU_TYPE = $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
-CONFARGS = --host=$(DEB_HOST_GNU_TYPE)
+  CONFARGS = --host=$(DEB_HOST_GNU_TYPE)
+  STRIP=$(DEB_HOST_GNU_TYPE)-strip
 endif
 
 CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
@@ -68,7 +71,7 @@
 # Install sed
 	$(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
-	strip --remove-section=.comment --remove-section=.note \
+	$(STRIP) --remove-section=.comment --remove-section=.note \
 		--strip-unneeded debian/tmp/bin/sed
 endif
 	rm -f $(tmpdir)/usr/share/info/dir*
