Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 407319 | Differences between
and this patch

Collapse All | Expand All

(-)./gnome-color-manager-3.2.2/src/gcm-calibrate-argyll.c (-2 / +2 lines)
Lines 239-245 gcm_calibrate_argyll_get_display (const Link Here
239
	gchar *name;
239
	gchar *name;
240
240
241
	/* execute it and capture stderr */
241
	/* execute it and capture stderr */
242
	ret = g_spawn_command_line_sync ("dispcal", NULL, &data, &exit_status, error);
242
	ret = g_spawn_command_line_sync ("argyll-dispcal", NULL, &data, &exit_status, error);
243
	if (!ret)
243
	if (!ret)
244
		goto out;
244
		goto out;
245
245
Lines 417-423 gcm_calibrate_argyll_display_neutralise Link Here
417
		      NULL);
417
		      NULL);
418
418
419
	/* get correct name of the command */
419
	/* get correct name of the command */
420
	command = gcm_calibrate_argyll_get_tool_filename ("dispcal", error);
420
	command = gcm_calibrate_argyll_get_tool_filename ("argyll-dispcal", error);
421
	if (command == NULL) {
421
	if (command == NULL) {
422
		ret = FALSE;
422
		ret = FALSE;
423
		goto out;
423
		goto out;
(-)./gnome-color-manager-3.2.2/src/gcm-calibrate-main.c (-1 / +1 lines)
Lines 1867-1873 gcm_calib_add_pages (GcmCalibratePriv *c Link Here
1867
		gcm_calib_setup_page_sensor (calib);
1867
		gcm_calib_setup_page_sensor (calib);
1868
1868
1869
	/* find whether argyllcms is installed using a tool which should exist */
1869
	/* find whether argyllcms is installed using a tool which should exist */
1870
	ret = g_file_test ("/usr/bin/dispcal", G_FILE_TEST_EXISTS);
1870
	ret = g_file_test ("/usr/bin/argyll-dispcal", G_FILE_TEST_EXISTS);
1871
	if (!ret)
1871
	if (!ret)
1872
		gcm_calib_setup_page_install_argyllcms (calib);
1872
		gcm_calib_setup_page_install_argyllcms (calib);
1873
1873

Return to bug 407319