build-export: Add missing \n to g_print calls

This commit is contained in:
Timm Bäder
2016-09-13 09:39:36 +02:00
parent db6b4c9b52
commit f4bf8eb955

View File

@@ -341,14 +341,14 @@ check_refs:
bin_file = convert_app_absolute_path (argv[0], files);
if (!g_file_query_exists (bin_file, NULL))
g_print ("WARNING: Binary not found for Exec line in %s: %s", path, command);
g_print ("WARNING: Binary not found for Exec line in %s: %s\n", path, command);
*icon = g_key_file_get_string (key_file,
G_KEY_FILE_DESKTOP_GROUP,
G_KEY_FILE_DESKTOP_KEY_ICON,
NULL);
if (*icon && !g_str_has_prefix (*icon, app_id))
g_print ("WARNING: Icon not matching app id in %s: %s", path, *icon);
g_print ("WARNING: Icon not matching app id in %s: %s\n", path, *icon);
*activatable = g_key_file_get_boolean (key_file,
G_KEY_FILE_DESKTOP_GROUP,
@@ -376,7 +376,7 @@ validate_icon (const char *icon,
svg = g_strconcat (icon, ".svg", NULL);
if (!find_file_in_tree (icondir, png) &&
!find_file_in_tree (icondir, svg))
g_print ("WARNING: Icon referenced in desktop file but not exported: %s", icon);
g_print ("WARNING: Icon referenced in desktop file but not exported: %s\n", icon);
return TRUE;
}
@@ -438,7 +438,7 @@ validate_service_file (GFile *service_file,
bin_file = convert_app_absolute_path (argv[0], files);
if (!g_file_query_exists (bin_file, NULL))
g_print ("WARNING: Binary not found for Exec line in %s: %s", path, command);
g_print ("WARNING: Binary not found for Exec line in %s: %s\n", path, command);
return TRUE;
}