diff -ur debian.org/README.Debian debian/README.Debian
diff -ur debian.org/rules.defs debian/rules.defs
--- debian.org/rules.defs	2005-01-04 14:40:09.000000000 +0100
+++ debian/rules.defs	2005-01-04 20:18:08.000000000 +0100
@@ -39,7 +39,14 @@
 # we build for.
 
 ifeq ($(DEB_TARGET_ARCH),)
-$(error GCC_TARGET value "$(GCC_TARGET)" is not a valid Debian architecture)
+  ifeq ($(GCC_TARGET),none)
+    DEB_TARGET_ARCH:=$(shell echo $(DEB_TARGET_ALIAS) | sed -e 's/\-.*//')
+    DEB_TARGET_GNU_CPU:=$(DEB_TARGET_ARCH)
+    DEB_TARGET_GNU_SYSTEM:=$(shell echo $(DEB_TARGET_ALIAS) | grep -- - | sed -e 's/[^-]*\-//')
+    DEB_TARGET_GNU_TYPE:=$(DEB_TARGET_ALIAS)
+  else
+    $(error GCC_TARGET value "$(GCC_TARGET)" is not a valid Debian architecture)
+  endif
 endif
   
 ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_TARGET_GNU_TYPE))
@@ -483,8 +490,8 @@
 endif
 
 # Shared libgcc --------------------
-with_libgcc := yes
-with_shared_libgcc := yes
+with_libgcc := no
+with_shared_libgcc := no
 
 #ifeq ($(with_common_libs),yes)
 #  with_libgcc := yes
