Merge pull request #1061 from stilor/fix-glibc-ports-symlink

Create glibc-ports symlink inside CT_SRC_DIR
This commit is contained in:
Alexey Neyman 2018-10-16 00:04:40 -07:00 committed by GitHub
commit 6a21d9bcfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,8 +23,8 @@ do_libc_extract() {
# we do not support concurrent use of the source directory # we do not support concurrent use of the source directory
# and next run, if using different glibc-ports source, will override # and next run, if using different glibc-ports source, will override
# this symlink anyway. # this symlink anyway.
CT_DoExecLog ALL ln -sf "${CT_GLIBC_PORTS_SRC_DIR}/${CT_GLIBC_PORTS_BASENAME}" \ CT_DoExecLog ALL ln -sf "${CT_SRC_DIR}/${CT_GLIBC_PORTS_DIR_NAME}" \
"${CT_GLIBC_SRC_DIR}/${CT_GLIBC_BASENAME}/ports" "${CT_SRC_DIR}/${CT_GLIBC_DIR_NAME}/ports"
fi fi
} }