From e8f9c537b82934cdacf0c1c2126e4e02f06a10a5 Mon Sep 17 00:00:00 2001 From: scop Date: Sun, 30 Dec 2007 21:40:33 +0000 Subject: Don't hardcode path to image_convert.sh, assume it is in PATH (like README says). git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@964 e10066b5-e1e2-0310-b819-94efdf66514b --- mg_image_provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mg_image_provider.c b/mg_image_provider.c index 6eb43bd..0891628 100644 --- a/mg_image_provider.c +++ b/mg_image_provider.c @@ -362,7 +362,7 @@ void mgImageProvider::Action() char *tmp; - asprintf( &tmp, "/usr/local/bin/image_convert.sh \"%s\" \"%s\"", filename.c_str(), tmpFile.c_str() ); + asprintf( &tmp, "image_convert.sh \"%s\" \"%s\"", filename.c_str(), tmpFile.c_str() ); system( (const char*) tmp ); free(tmp); -- cgit v1.2.3