Skip to content

Commit e63b2d3

Browse files
committed
auto merge of #13219 : brson/rust/dist-root, r=sfackler
2 parents 7a70c69 + cfb52a5 commit e63b2d3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

mk/install.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ endif
1717
install: dist-install-dir-$(CFG_BUILD)
1818
$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)"
1919
# Remove tmp files while we can because they may have been created under sudo
20-
$(Q)rm -R tmp/dist/$(PKG_NAME)-$(CFG_BUILD)
20+
$(Q)rm -R tmp/dist
2121

2222
uninstall: dist-install-dir-$(CFG_BUILD)
2323
$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
2424
# Remove tmp files while we can because they may have been created under sudo
25-
$(Q)rm -R tmp/dist/$(PKG_NAME)-$(CFG_BUILD)
25+
$(Q)rm -R tmp/dist
2626

2727

2828
######################################################################

src/etc/install.sh

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ putvar() {
4545
else
4646
printf "install: %-20s := %s %s\n" $1 "$T" "$2"
4747
fi
48-
printf "%-20s := %s\n" $1 "$T" >>config.tmp
4948
}
5049

5150
valopt() {

0 commit comments

Comments
 (0)