diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-07-02 16:59:14 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-07-02 16:59:14 -0700 |
commit | 5e9b6af4a9bb2aad0e1929e88b52009d14cb6831 (patch) | |
tree | 8bf55b4e8a9754e6285a5ab95e2ba4330b6b7d1d | |
parent | d3bdf19b78aa4de74030175bbd9c41971428af81 (diff) | |
download | glibc-5e9b6af4a9bb2aad0e1929e88b52009d14cb6831.tar.gz glibc-5e9b6af4a9bb2aad0e1929e88b52009d14cb6831.tar.xz glibc-5e9b6af4a9bb2aad0e1929e88b52009d14cb6831.zip |
Fail if format.lds comes out empty.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makerules | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index a5167235e7..63887b7913 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2011-07-02 Roland McGrath <roland@hack.frob.com> + * Makerules ($(common-objpfx)format.lds): Fail if result is empty. + * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to containing directory rather than embedding absolute directory names. diff --git a/Makerules b/Makerules index 3234fc23ce..d70a196ded 100644 --- a/Makerules +++ b/Makerules @@ -993,6 +993,7 @@ $(common-objpfx)format.lds: $(..)scripts/output-format.sed \ $(LINK.o) -shared $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS.so) \ -x c /dev/null -o $@.so -Wl,--verbose -v 2>&1 \ | sed -n -f $< > $@.new + test -s $@.new rm -f $@.so mv -f $@.new $@ common-generated += format.lds |