diff options
author | Alexey Neyman <stilor@att.net> | 2017-01-11 10:24:06 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-01-12 23:00:20 -0800 |
commit | 01a4bed794d3474df1e1f7ab03aa925b69668fbf (patch) | |
tree | 1ba4cc3ef0ff1c8f5b466b3f8189be93a20ada38 /scripts/build/libc/newlib.sh | |
parent | ec9ddee933d16b5126dc6ba6c94ed428dd01ab75 (diff) | |
download | crosstool-ng-01a4bed794d3474df1e1f7ab03aa925b69668fbf.tar.gz crosstool-ng-01a4bed794d3474df1e1f7ab03aa925b69668fbf.tar.bz2 crosstool-ng-01a4bed794d3474df1e1f7ab03aa925b69668fbf.zip |
install_root has no effect on newlib install.
And never had, at least since newlib 1.17 (first version added to
crosstool-ng). Apparently, copy-pasted from glibc.sh.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/libc/newlib.sh')
-rw-r--r-- | scripts/build/libc/newlib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh index 7a6b194f..e0e42e28 100644 --- a/scripts/build/libc/newlib.sh +++ b/scripts/build/libc/newlib.sh @@ -142,7 +142,7 @@ ENABLE_TARGET_OPTSPACE:target-optspace CT_DoExecLog ALL make ${JOBSFLAGS} CT_DoLog EXTRA "Installing C library" - CT_DoExecLog ALL make install install_root="${CT_SYSROOT_DIR}" + CT_DoExecLog ALL make install if [ "${CT_BUILD_MANUALS}" = "y" ]; then local -a doc_dir="${CT_BUILD_DIR}/build-libc/${CT_TARGET}" |