diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-14 20:26:56 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-14 20:26:56 +0000 |
commit | 6c0b2972dc2d92093a42d5f9bb6857fb65b1b078 (patch) | |
tree | 2821f517f2aad7182d799ef91fe023cfdb1b777a | |
parent | a5da6238347f2756c710fbc0382d7d29bf045d03 (diff) | |
download | glibc-6c0b2972dc2d92093a42d5f9bb6857fb65b1b078.tar.gz glibc-6c0b2972dc2d92093a42d5f9bb6857fb65b1b078.tar.xz glibc-6c0b2972dc2d92093a42d5f9bb6857fb65b1b078.zip |
* Makerules (%.dynsym): Remove $(objpfx) from target and dep.
(%.symlist): Likewise.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makerules | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index f776a7af9a..6a643229a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-11-14 Roland McGrath <roland@redhat.com> + + * Makerules (%.dynsym): Remove $(objpfx) from target and dep. + (%.symlist): Likewise. + 2002-11-13 Roland McGrath <roland@redhat.com> * scripts/abilist.awk: New file. diff --git a/Makerules b/Makerules index 61f847bf2f..5508827134 100644 --- a/Makerules +++ b/Makerules @@ -1079,7 +1079,7 @@ ifeq ($(versioning),yes) # Generate normalized lists of symbols, versions, and data sizes. # This is handy for checking against existing library binaries. -$(objpfx)%.symlist: $(..)scripts/abilist.awk $(objpfx)%.dynsym +%.symlist: $(..)scripts/abilist.awk %.dynsym $(AWK) -f $^ > $@T mv -f $@T $@ |