diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-07-20 19:20:34 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-07-20 19:20:34 +0000 |
commit | 0f48659e36e72c091f988d9ea5a2dd505960ab0f (patch) | |
tree | 2ec866c2cf8096f8116db3dce430d4e5ea38cc26 /elf | |
parent | b2ae49dab80bb00771dd4c29b518f1829690d55b (diff) | |
download | glibc-0f48659e36e72c091f988d9ea5a2dd505960ab0f.zip glibc-0f48659e36e72c091f988d9ea5a2dd505960ab0f.tar.gz glibc-0f48659e36e72c091f988d9ea5a2dd505960ab0f.tar.bz2 |
Move localplt baselines to sysdeps directories.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/elf/Makefile b/elf/Makefile index 9054199..b999376 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -947,15 +947,6 @@ $(all-built-dso:=.jmprel): %.jmprel: % Makefile mv -f $@T $@ common-generated += $(all-built-dso:$(common-objpfx)%=%.jmprel) -check-data := $(firstword $(wildcard \ - $(foreach D,$(add-ons) scripts,\ - $(patsubst %,$(..)$D/data/localplt-%.data,\ - $(abi-name) \ - $(addsuffix -$(config-os),\ - $(config-machine) \ - $(base-machine)) \ - generic)))) - tests: $(objpfx)check-localplt.out localplt-built-dso := $(addprefix $(common-objpfx),\ @@ -970,12 +961,14 @@ ifeq ($(have-thread-library),yes) localplt-built-dso += $(filter-out %_nonshared.a, $(shared-thread-library)) endif +vpath localplt.data $(+sysdep_dirs) + $(objpfx)check-localplt.out: $(..)scripts/check-localplt.awk \ $(..)scripts/localplt.awk \ $(localplt-built-dso:=.jmprel) \ - $(check-data) - LC_ALL=C $(AWK) -f $(filter-out $< $(check-data),$^) | \ - LC_ALL=C $(AWK) -f $< $(check-data) - \ + localplt.data + LC_ALL=C $(AWK) -f $(filter-out $< %localplt.data,$^) | \ + LC_ALL=C $(AWK) -f $< $(filter %localplt.data,$^) - \ > $@ endif |