diff options
author | Mark Wielaard <mjw@redhat.com> | 2011-02-25 20:17:52 +0100 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2011-02-25 20:18:44 +0100 |
commit | 58cfa1c78f45459ad2b5cc9b58b052f44054a9e7 (patch) | |
tree | 037f271eeb3341a8e77131029cee79b284941c42 /tests | |
parent | cf454ab68981584c50ad28133c7065344f06db80 (diff) | |
download | elfutils-58cfa1c78f45459ad2b5cc9b58b052f44054a9e7.tar.gz |
BUILT_RPATH vs BUILD_RPATH fixup.
* tests/Makefile.am (BUILD_RPATH): Be consistent in naming.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 4 | ||||
-rw-r--r-- | tests/Makefile.am | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index bc788431..3fb68994 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2011-02-25 Mark Wielaard <mjw@redhat.com> + + * Makefile.am (BUILD_RPATH): Be consistent in naming. + 2011-02-02 Josh Stone <jistone@redhat.com> * run-prelink-addr-test.sh: Add testfile55, 32 and 64-bit. diff --git a/tests/Makefile.am b/tests/Makefile.am index b317553d..3c37cb37 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -28,7 +28,7 @@ include $(top_srcdir)/config/eu.am if MUDFLAP BUILD_RPATH = \$$ORIGIN/../backends else -BUILT_RPATH = \$$ORIGIN/../libasm:\$$ORIGIN/../libdw:\$$ORIGIN/../backends:\$$ORIGIN/../libelf +BUILD_RPATH = \$$ORIGIN/../libasm:\$$ORIGIN/../libdw:\$$ORIGIN/../backends:\$$ORIGIN/../libelf endif AM_LDFLAGS = @@ -42,7 +42,7 @@ AM_LDFLAGS += -Wl,-rpath-link,../libasm:../libdw:../libelf endif if TESTS_RPATH -AM_LDFLAGS += -Wl,-rpath,$(BUILT_RPATH) +AM_LDFLAGS += -Wl,-rpath,$(BUILD_RPATH) tests_rpath = yes else tests_rpath = no |