Skip to content

Commit dbf664c

Browse files
committed
---
yaml --- r: 146238 b: refs/heads/try2 c: 651f5db h: refs/heads/master v: v3
1 parent 33a019d commit dbf664c

File tree

198 files changed

+3063
-2543
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+3063
-2543
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: de3d36a763a09032a68aa9d47071840c8b4dd5a7
8+
refs/heads/try2: 651f5db4623526d416458e9f77632e7dd72f96a8
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
branch = master
99
[submodule "src/gyp"]
1010
path = src/gyp
11-
url = https://github.com/brson/gyp.git
11+
url = https://git.chromium.org/external/gyp.git

branches/try2/mk/install.mk

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ else
2323
INSTALL = $(Q)$(call E, install: $(2)/$(3)) && install -m755 $(1)/$(3) $(2)/$(3)
2424
endif
2525

26-
# For MK_INSTALL_DIR
27-
# $(1) is the directory to create
28-
MK_INSTALL_DIR = (umask 022 && mkdir -p $(1))
29-
3026
# For INSTALL_LIB,
3127
# Target-specific $(LIB_SOURCE_DIR) is the source directory
3228
# Target-specific $(LIB_DESTIN_DIR) is the destination directory
@@ -87,7 +83,7 @@ define INSTALL_TARGET_N
8783
install-target-$(1)-host-$(2): LIB_SOURCE_DIR=$$(TL$(1)$(2))
8884
install-target-$(1)-host-$(2): LIB_DESTIN_DIR=$$(PTL$(1)$(2))
8985
install-target-$(1)-host-$(2): $$(TSREQ$$(ISTAGE)_T_$(1)_H_$(2)) $$(SREQ$$(ISTAGE)_T_$(1)_H_$(2))
90-
$$(Q)$$(call MK_INSTALL_DIR,$$(PTL$(1)$(2)))
86+
$$(Q)mkdir -p $$(PTL$(1)$(2))
9187
$$(Q)$$(call INSTALL_LIB,$$(CFG_RUNTIME_$(1)))
9288
$$(Q)$$(call INSTALL_LIB,$$(STDLIB_GLOB_$(1)))
9389
$$(Q)$$(call INSTALL_LIB,$$(EXTRALIB_GLOB_$(1)))
@@ -99,7 +95,7 @@ define INSTALL_HOST_N
9995
install-target-$(1)-host-$(2): LIB_SOURCE_DIR=$$(TL$(1)$(2))
10096
install-target-$(1)-host-$(2): LIB_DESTIN_DIR=$$(PTL$(1)$(2))
10197
install-target-$(1)-host-$(2): $$(CSREQ$$(ISTAGE)_T_$(1)_H_$(2))
102-
$$(Q)$$(call MK_INSTALL_DIR,$$(PTL$(1)$(2)))
98+
$$(Q)mkdir -p $$(PTL$(1)$(2))
10399
$$(Q)$$(call INSTALL_LIB,$$(CFG_RUNTIME_$(1)))
104100
$$(Q)$$(call INSTALL_LIB,$$(CFG_RUSTLLVM_$(1)))
105101
$$(Q)$$(call INSTALL_LIB,$$(STDLIB_GLOB_$(1)))
@@ -135,9 +131,9 @@ PHL = $(PREFIX_LIB)
135131
install-host: LIB_SOURCE_DIR=$(HL)
136132
install-host: LIB_DESTIN_DIR=$(PHL)
137133
install-host: $(CSREQ$(ISTAGE)_T_$(CFG_BUILD_TRIPLE)_H_$(CFG_BUILD_TRIPLE))
138-
$(Q)$(call MK_INSTALL_DIR,$(PREFIX_BIN))
139-
$(Q)$(call MK_INSTALL_DIR,$(PREFIX_LIB))
140-
$(Q)$(call MK_INSTALL_DIR,$(PREFIX_ROOT)/share/man/man1)
134+
$(Q)mkdir -p $(PREFIX_BIN)
135+
$(Q)mkdir -p $(PREFIX_LIB)
136+
$(Q)mkdir -p $(PREFIX_ROOT)/share/man/man1
141137
$(Q)$(call INSTALL,$(HB2),$(PHB),rustc$(X_$(CFG_BUILD_TRIPLE)))
142138
$(Q)$(call INSTALL,$(HB2),$(PHB),rustpkg$(X_$(CFG_BUILD_TRIPLE)))
143139
$(Q)$(call INSTALL,$(HB2),$(PHB),rustdoc$(X_$(CFG_BUILD_TRIPLE)))

branches/try2/src/etc/licenseck.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@
7676
"rt/isaac/randport.cpp", # public domain
7777
"rt/isaac/rand.h", # public domain
7878
"rt/isaac/standard.h", # public domain
79-
"libstd/rt/mpsc_queue.rs", # BSD
80-
"libstd/rt/mpmc_bounded_queue.rs", # BSD
8179
]
8280

8381
def check_license(name, contents):

0 commit comments

Comments
 (0)