Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2001-03-19  Andreas Schwab  <schwab@suse.de>

	* Makerules (build-shlib): Make sure exit codes get checked
	properly.
  • Loading branch information
Ulrich Drepper committed Mar 19, 2001
1 parent 639c324 commit b5d5128
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2001-03-19 Andreas Schwab <schwab@suse.de>

* Makerules (build-shlib): Make sure exit codes get checked
properly.

2001-03-18 Ulrich Drepper <drepper@redhat.com>

* Makerules (build-shlib): Remove unnecessary slashes introduced in
Expand Down
10 changes: 5 additions & 5 deletions Makerules
Original file line number Diff line number Diff line change
Expand Up @@ -431,13 +431,13 @@ $(build-shlib-helper) \
$(LDLIBS-$(@F:lib%.so=%).so) 2>&1 | \
sed -e '/^=========/,/^=========/!d;/^=========/d' \
-e 's/^.*\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
> $@.lds; \
rm -f $@.new; \
$(build-shlib-helper) -o $@ -T $@.lds \
> $@.lds
rm -f $@.new
$(build-shlib-helper) -o $@ -T $@.lds \
-Wl,--whole-archive $(csu-objpfx)abi-note.o \
$(filter-out $(map-file) $(+preinit) $(+postinit),$^) \
$(no-whole-archive) $(LDLIBS-$(@F:lib%.so=%).so); \
rm -f $@.lds
$(no-whole-archive) $(LDLIBS-$(@F:lib%.so=%).so)
rm -f $@.lds
endef
else
define build-shlib
Expand Down

0 comments on commit b5d5128

Please sign in to comment.