From: <and...@us...> - 2009-11-16 12:01:16
|
Revision: 10595 http://plplot.svn.sourceforge.net/plplot/?rev=10595&view=rev Author: andrewross Date: 2009-11-16 12:01:06 +0000 (Mon, 16 Nov 2009) Log Message: ----------- plFindCommand should search in source_tree/scripts not build_tree/scripts since that is where the scripts are located. Modified Paths: -------------- trunk/src/plctrl.c Modified: trunk/src/plctrl.c =================================================================== --- trunk/src/plctrl.c 2009-11-15 13:39:12 UTC (rev 10594) +++ trunk/src/plctrl.c 2009-11-16 12:01:06 UTC (rev 10595) @@ -1846,7 +1846,7 @@ * Looks for the specified executable file. Search path: * if command invoked in the build tree: * build_tree/tk (plserver lies there - needed for the tk driver) - * build_tree/scripts (plpr lies there - needed for the tk driver) + * source_tree/scripts (plpr lies there - needed for the tk driver) * else * PLPLOT_BIN_ENV = $(PLPLOT_BIN) * current directory @@ -1870,7 +1870,7 @@ return fs; else { - plGetName( BUILD_DIR, "scripts", fn, &fs ); + plGetName( SOURCE_DIR, "scripts", fn, &fs ); if ( !plFindName( fs )) return fs; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |