Skip to content

Commit 595e368

Browse files
committed
Actually fix parallel builds
1 parent a2447f6 commit 595e368

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ OPENSSL_STAMP := $(BUILDDIR)/openssl.stamp
1616

1717
$(PHF): $(PHF_STAMP)
1818

19-
$(PHF_STAMP):
19+
$(PHF_STAMP): | $(BUILDDIR)
2020
$(MAKE) -C $(PHF_DIR)
2121
touch $(PHF_STAMP)
2222

2323
$(OPENSSL): $(OPENSSL_STAMP)
2424

25-
$(OPENSSL_STAMP):
25+
$(OPENSSL_STAMP): | $(BUILDDIR)
2626
$(MAKE) -C $(OPENSSL_DIR)
2727
touch $(OPENSSL_STAMP)
2828

0 commit comments

Comments
 (0)