File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -540,7 +540,6 @@ opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
540
540
opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
541
541
opt llvm-static-stdcpp 0 "statically link to libstdc++ for LLVM"
542
542
opt rpath 0 "build rpaths into rustc itself"
543
- opt verify-install 1 "verify installed binaries work"
544
543
# This is used by the automation to produce single-target nightlies
545
544
opt dist-host-only 0 "only install bins for the host architecture"
546
545
opt inject-std-version 1 "inject the current compiler version of libstd into programs"
Original file line number Diff line number Diff line change 8
8
# option. This file may not be copied, modified, or distributed
9
9
# except according to those terms.
10
10
11
- ifdef CFG_DISABLE_VERIFY_INSTALL
12
- MAYBE_DISABLE_VERIFY =--disable-verify
13
- else
14
- MAYBE_DISABLE_VERIFY =
15
- endif
16
-
17
11
install :
18
12
ifeq (root user, $(USER ) $(patsubst % ,user,$(SUDO_USER ) ) )
19
13
# Build the dist as the original user
22
16
$(Q)$(MAKE) prepare_install
23
17
endif
24
18
ifeq ($(CFG_DISABLE_DOCS ) ,)
25
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)"
19
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
26
20
endif
27
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)"
21
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
28
22
# Remove tmp files because it's a decent amount of disk space
29
23
$(Q)rm -R tmp/dist
30
24
You can’t perform that action at this time.
0 commit comments