satman: unbreak build

This commit is contained in:
Sebastien Bourdeauducq 2017-01-27 23:26:40 +08:00
parent 6acb8021e1
commit 11994d1900
2 changed files with 4 additions and 4 deletions

View File

@ -16,5 +16,5 @@ build_artiq = { path = "../libbuild_artiq" }
alloc_artiq = { path = "../liballoc_artiq" }
std_artiq = { path = "../libstd_artiq", features = ["alloc"] }
logger_artiq = { path = "../liblogger_artiq" }
board = { path = "../libboard" }
board = { path = "../libboard", features = ["uart_console"] }
log = { version = "0.3", default-features = false }

View File

@ -1,6 +1,6 @@
extern crate artiq_build;
extern crate build_artiq;
fn main() {
artiq_build::git_describe();
artiq_build::misoc_registers();
build_artiq::git_describe();
build_artiq::misoc_registers();
}