Skip to content
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.

Commit

Permalink
Auto merge of #42 - servo:jdm-patch-1, r=asajeffrey
Browse files Browse the repository at this point in the history
Fix intermittent build error

This is a symptom of a change in Cargo (rust-lang/cargo#7465) that no longer preserves the mtime of files extracted during the package download process. This means that generated files included in this repository can end up being regenerated unnecessarily unless we explicitly force them to be treated as more recent than their source files.
  • Loading branch information
bors-servo committed Dec 5, 2019
2 parents e33e249 + e02e81c commit 38e028e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "servo-fontconfig-sys"
version = "4.0.7"
version = "4.0.8"
authors = ["Keith Packard <keithp@keithp.com>", "Patrick Lam <plam@mit.edu>"]
license = "MIT"
description = "Font configuration and customization library"
Expand Down
3 changes: 2 additions & 1 deletion makefile.cargo
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ $(OUT_DIR)/Makefile:
--disable-docs \
--disable-shared \
$(EXPAT_FLAGS) \
$(strip $(CONFIGURE_FLAGS))
$(strip $(CONFIGURE_FLAGS)) &&
touch $(SRC_DIR)/src/fcobjshash.h

else

Expand Down

0 comments on commit 38e028e

Please sign in to comment.