From fcf467210e492bbcc2b6d7dc74b1e4e5a9a2588e Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Sun, 30 Jun 2019 19:32:17 -0400 Subject: [PATCH] tycho: use the correct meta functions --- tycho/source/meta.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tycho/source/meta.rs b/tycho/source/meta.rs index 3dfa9f8..ce31ef1 100644 --- a/tycho/source/meta.rs +++ b/tycho/source/meta.rs @@ -14,12 +14,12 @@ macro_rules! meta_str { } } -meta_str!( - tychoAuthors = meta::ffi::AUTHORS_C; - tychoHomepage = meta::ffi::HOMEPAGE_C; - tychoLicenseText = meta::ffi::LICENSE_TEXT_C; - tychoRepository = meta::ffi::REPOSITORY_C; - tychoVersion = meta::ffi::VERSION_C; -); +meta_str! { + tychoAuthors = meta::ffi::authors(); + tychoHomepage = meta::ffi::homepage(); + tychoLicenseText = meta::ffi::license_text(); + tychoRepository = meta::ffi::repository(); + tychoVersion = meta::ffi::version(); +} // EOF