Bump rust-phf and fix makefile
config.stamp isn't a thing anymore
This commit is contained in:
parent
2d59e5911a
commit
793e5e9bbf
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
||||
/doc/
|
||||
/build/
|
||||
/Makefile
|
||||
/config.stamp
|
||||
|
@ -12,11 +12,11 @@ PHF := $(foreach file,$(shell $(MAKE) -s -C $(PHF_DIR) print-targets),$(PHF_DIR)
|
||||
OPENSSL_DIR := submodules/rust-openssl
|
||||
OPENSSL := $(foreach file,$(shell $(MAKE) -s -C $(OPENSSL_DIR) print-target),$(OPENSSL_DIR)/$(file))
|
||||
|
||||
$(PHF): config.stamp
|
||||
$(PHF):
|
||||
$(MAKE) -C $(PHF_DIR)
|
||||
touch $(PHF)
|
||||
|
||||
$(OPENSSL): config.stamp
|
||||
$(OPENSSL):
|
||||
$(MAKE) -C $(OPENSSL_DIR)
|
||||
touch $(OPENSSL)
|
||||
|
||||
|
@ -296,7 +296,7 @@ fn test_lazy_query() {
|
||||
let trans = conn.transaction();
|
||||
trans.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", []);
|
||||
let stmt = trans.prepare("INSERT INTO foo (id) VALUES ($1)");
|
||||
let values = ~[0i32, 1, 2, 3, 4, 5];
|
||||
let values = vec!(0i32, 1, 2, 3, 4, 5);
|
||||
for value in values.iter() {
|
||||
stmt.execute([value as &ToSql]);
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit aecec520a41a70a4e9861dd4875232e3690907ea
|
||||
Subproject commit 84aa16d16bdccaafd4246cd00fc92533c00c7551
|
Loading…
Reference in New Issue
Block a user