|
From: Lasse Kärkkäi. <tr...@us...> - 2009-07-14 11:20:46
|
Module: performous Branch: 0.3 Commit: 19270594d904f74e09ce74539c29f38f0c9e6b73 Author: Vincent Le Ligeour <yo...@us...> Date: Tue Jul 14 12:31:32 2009 +0200 Fixed shell script helper to correctly parse parameters --- cmake/performous.sh.cmake | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cmake/performous.sh.cmake b/cmake/performous.sh.cmake index fa386cc..7326c21 100644 --- a/cmake/performous.sh.cmake +++ b/cmake/performous.sh.cmake @@ -1,4 +1,4 @@ #!/bin/sh -env PERFORMOUS_DATA_DIR='@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL@' PLUGIN_PATH='@PERFORMOUS_PLUGIN_PATH@' '@PERFORMOUS_EXECUTABLE@' $@ +env PERFORMOUS_DATA_DIR='@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL@' PLUGIN_PATH='@PERFORMOUS_PLUGIN_PATH@' '@PERFORMOUS_EXECUTABLE@' "$@" |