Displaying 3 results from an estimated 3 matches for "ac_config_link".
Did you mean:
  ac_config_links
  
2020 Jan 13
4
[PATCH] Link .mli files corresponding to autorgenerated .ml files into builddir
...-
---
 configure.ac | 4 ++++
 1 file changed, 4 insertions(+)
diff --git a/configure.ac b/configure.ac
index 5f8310a640..77a1e986cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -353,6 +353,10 @@ AC_CONFIG_FILES([Makefile
                  tools/Makefile
                  website/index.html])
 
+AC_CONFIG_LINKS([common/mlstdutils/guestfs_config.mli:common/mlstdutils/guestfs_config.mli
+                 daemon/daemon_config.mli:daemon/daemon_config.mli
+                 v2v/config.mli:v2v/config.mli])
+
 AC_OUTPUT
 
 dnl Produce summary.
-- 
2.25.0.rc2
2020 Jan 14
0
Re: [PATCH] Link .mli files corresponding to autorgenerated .ml files into builddir
...sertions(+)
> 
> diff --git a/configure.ac b/configure.ac
> index 5f8310a640..77a1e986cd 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -353,6 +353,10 @@ AC_CONFIG_FILES([Makefile
>                   tools/Makefile
>                   website/index.html])
>  
> +AC_CONFIG_LINKS([common/mlstdutils/guestfs_config.mli:common/mlstdutils/guestfs_config.mli
> +                 daemon/daemon_config.mli:daemon/daemon_config.mli
> +                 v2v/config.mli:v2v/config.mli])
> +
>  AC_OUTPUT
I had to look up what AC_CONFIG_LINKS does :-)
I think this is broadly...
2020 Jan 14
0
Re: [PATCH] Link .mli files corresponding to autorgenerated .ml files into builddir
...sertions(+)
> 
> diff --git a/configure.ac b/configure.ac
> index 5f8310a640..77a1e986cd 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -353,6 +353,10 @@ AC_CONFIG_FILES([Makefile
>                   tools/Makefile
>                   website/index.html])
>  
> +AC_CONFIG_LINKS([common/mlstdutils/guestfs_config.mli:common/mlstdutils/guestfs_config.mli
> +                 daemon/daemon_config.mli:daemon/daemon_config.mli
> +                 v2v/config.mli:v2v/config.mli])
> +
>  AC_OUTPUT
I do not think this is the correct approach.  See my analysis here:
htt...