From c616d02cb6193e41ea6d0d1bbc98bc3b6c1b8614 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 23:43:36 +1000 Subject: Move executables to the bin directory. --- src/extantz/extantz.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/extantz/extantz.c') diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c index 159fcaf..1708a6c 100644 --- a/src/extantz/extantz.c +++ b/src/extantz/extantz.c @@ -538,6 +538,7 @@ int skangStep = 0; static Eina_Bool _makeSkang(void *data) { globals *ourGlobals = data; + char buf[PATH_MAX]; switch (skangStep++) { @@ -567,7 +568,8 @@ static Eina_Bool _makeSkang(void *data) #if USE_LOVE case 5 : // PD("About to try connecting to a love server."); - reachOut("love", "./love", "127.0.0.1", 8211 + 1, ourGlobals, (Ecore_Event_Handler_Cb) _add, /*(Ecore_Event_Handler_Cb) _data*/ NULL, (Ecore_Event_Handler_Cb) _del, clientParser, NULL); + snprintf(buf, sizeof(buf), "%s/love", prefix_bin_get()); + reachOut("love", buf, "127.0.0.1", 8211 + 1, ourGlobals, (Ecore_Event_Handler_Cb) _add, /*(Ecore_Event_Handler_Cb) _data*/ NULL, (Ecore_Event_Handler_Cb) _del, clientParser, NULL); break; #endif -- cgit v1.1