summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-json/Makefile
AgeCommit message (Collapse)AuthorLines
2014-06-16Fix --disable-rpath and testsAlex Crichton-2/+2
This involved a few changes to the local build system: * Makefiles now prefer our own LD_LIBRARY_PATH over the user's LD_LIBRARY_PATH in order to support building rust with rust already installed. * The compiletest program was taught to correctly pass through the aux dir as a component of LD_LIBRARY_PATH in more situations. This change was spliced out of #14832 to consist of just the fixes to running tests without an rpath setting embedded in executables.
2014-02-19rustdoc: Fix json output and inputAlex Crichton-0/+4
Turns out a hash map with integer keys isn't serializable to json. Closes #10115