Skip to content

Commit 825d542

Browse files
committed
---
yaml --- r: 1771 b: refs/heads/master c: ea1321f h: refs/heads/master i: 1769: 3905d22 1767: 91a5aec v: v3
1 parent 644388d commit 825d542

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 7ed7c02111d46f4c73f6d936993708692f947f85
2+
refs/heads/master: ea1321fcdd136d3bf90bd7015c6c54b1c4932535

trunk/Makefile.in

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ RUNTIME_HDR := rt/globals.h \
301301
rt/util/hash_map.h \
302302
rt/sync/sync.h \
303303
rt/sync/timer.h \
304+
rt/sync/lock_and_signal.h \
304305
rt/sync/lock_free_queue.h \
305306
rt/rust_srv.h \
306307
rt/rust_kernel.h \
@@ -944,14 +945,16 @@ PKG_FILES :=\
944945
$(RUNTIME_CS) $(RUNTIME_HDR) \
945946
$(LLVMEXT_CS) $(LLVMEXT_HDR) \
946947
$(PKG_3RDPARTY)) \
948+
$(GENERATED) \
949+
$(S)src/boot/fe/lexer.ml \
947950
$(COMPILER_INPUTS) \
948951
$(STDLIB_INPUTS) \
949952
$(ALL_TEST_INPUTS) \
950953
$(GENERATED)
951954

952955
dist: $(PKG_TAR)
953956

954-
$(PKG_TAR):
957+
$(PKG_TAR): $(GENERATED)
955958
@$(call E, making dist dir)
956959
$(Q)rm -Rf dist
957960
$(Q)mkdir -p dist/$(PKG_DIR)
@@ -960,9 +963,12 @@ $(PKG_TAR):
960963
$(Q)rm -Rf dist
961964

962965
distcheck: $(PKG_TAR)
963-
$(Q)tar -c $(PKG_FILES) | tar -x -C dist/$(PKG_DIR)
966+
$(Q)rm -Rf dist
967+
$(Q)mkdir -p dist
968+
@$(call E, unpacking $(PKG_TAR) in dist/$(PKG_DIR))
969+
$(Q)cd dist && tar -xzf ../$(PKG_TAR)
964970
@$(call E, configuring in dist/$(PKG_DIR)-build)
965-
$(Q)mkdir -p dist/build
971+
$(Q)mkdir -p dist/$(PKG_DIR)-build
966972
$(Q)cd dist/$(PKG_DIR)-build && ../$(PKG_DIR)/configure
967973
@$(call E, making 'check' in dist/$(PKG_DIR)-build)
968974
$(Q)make -C dist/$(PKG_DIR)-build check
@@ -984,7 +990,7 @@ distcheck: $(PKG_TAR)
984990
tidy:
985991
@$(call E, check: formatting)
986992
$(Q)python $(S)src/etc/tidy.py \
987-
$(filter-out $(GENERATED) \
993+
$(filter-out $(GENERATED) $(addprefix $(S)src/, $(GENERATED)) \
988994
$(addprefix $(S)src/, $(LLVMEXT_CS) $(LLVMEXT_HDR) $(PKG_3RDPARTY)) \
989995
$(S)src/etc/%, $(PKG_FILES))
990996

0 commit comments

Comments
 (0)