summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-03-01 06:55:57 +0000
committerJakub Jelinek <jakub@redhat.com>2006-03-01 06:55:57 +0000
commit6a8c1091fdc978b0e369f4ca3f58a07c2f8b9d33 (patch)
tree754e2649fcc68e83b3ad749cb5a1a1f7549ffafb /stdlib
parent378b1353df56387b0706bc42cb661ff2227c8eb9 (diff)
Updated to fedora-glibc-20060301T0647
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/Makefile3
-rw-r--r--stdlib/gen-mpn-copy35
2 files changed, 1 insertions, 37 deletions
diff --git a/stdlib/Makefile b/stdlib/Makefile
index 2690d5dd47..c857eac744 100644
--- a/stdlib/Makefile
+++ b/stdlib/Makefile
@@ -83,8 +83,7 @@ routines := $(strip $(routines) $(mpn-routines)) \
dbl2mpn ldbl2mpn \
mpn2flt mpn2dbl mpn2ldbl
aux += fpioconst mp_clz_tab
-distribute := $(distribute) $(mpn-headers) gen-mpn-copy fpioconst.h \
- tst-putenvmod.c
+distribute := $(distribute) $(mpn-headers) fpioconst.h tst-putenvmod.c
tests-extras += tst-putenvmod
extra-objs += tst-putenvmod.os
diff --git a/stdlib/gen-mpn-copy b/stdlib/gen-mpn-copy
deleted file mode 100644
index 01656ae54d..0000000000
--- a/stdlib/gen-mpn-copy
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-
-translations='
-sparc64 sparc/sparc64
-sparc32/v8 sparc/sparc8
-sparc32 sparc
-x86/pentium i386/i586
-x86 i386
-m68k/mc68000 m68k/m68000
-m68k/mc68020 m68k/m68020
-m88k/mc88100 m88k/m88100
-m88k/mc88110 m88k/m88110
-mips3 mips/mips3
-mips2 mips
-hppa/hppa1_1 hppa/hppa1.1
-alpha/ev5 alpha/alphaev5
-power rs6000
-am29000 a29k
-'
-
-set $translations
-while [ $# -ge 2 ]; do
- gmp=$1 glibc=$2
- shift; shift
- echo 'mpn-found-1 := $(filter $(gmp-srcdir)/mpn/'$gmp'/%,$(mpn-found))
-mpn-copy-1 := $(patsubst $(gmp-srcdir)/mpn/'$gmp'/%,$(sysdep_dir)/'$glibc\
-'/%,$(mpn-found-1))
-mpn-found := $(filter-out $(mpn-found-1),$(mpn-found))
-mpn-copy-sysdep := $(mpn-copy-sysdep) $(mpn-copy-1)
-$(mpn-copy-1): $(sysdep_dir)/'$glibc'/%: \
- $(ignore gmp2glibc.sed) $(gmp-srcdir)/mpn/'$gmp'/%
- $(gmp2glibc)'
-done
-
-exit 0