main: use single-quotes for --env output

pull/164/head
William Pitcock 2017-12-07 12:31:45 -06:00
parent 7ab4dffaf1
commit f1e5014921
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -394,7 +394,7 @@ apply_env_var(const char *prefix, pkgconf_client_t *client, pkgconf_pkg_t *world
goto out;
render_buf = pkgconf_fragment_render(&filtered_list, true);
printf("%s=%s\n", prefix, render_buf);
printf("%s='%s'\n", prefix, render_buf);
free(render_buf);
out: