From 430b62d4ca0d3b7c9a5ef10c249ce0607a6f5c7f Mon Sep 17 00:00:00 2001 From: Mike Boutin Date: Sun, 18 May 2014 15:32:46 -0400 Subject: [PATCH] install: Removed lib dir assumptions Replaced literal 'lib' with source relative lib directory. mingw32 uses 'bin' instead of 'lib'. Closes #13810. --- src/etc/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/install.sh b/src/etc/install.sh index dc09c7dfd00da..0d3ef579398de 100644 --- a/src/etc/install.sh +++ b/src/etc/install.sh @@ -384,7 +384,7 @@ while read p; do need_ok "failed to update manifest" # The manifest lists all files to install -done < "${CFG_SRC_DIR}/lib/rustlib/manifest.in" +done < "${CFG_SRC_DIR}/${CFG_LIBDIR#$CFG_PREFIX}/rustlib/manifest.in" # Sanity check: can we run the installed binaries? if [ -z "${CFG_DISABLE_VERIFY}" ]