Revision: 814 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=814&view=rev Author: ntrel Date: 2009-07-13 15:47:41 +0000 (Mon, 13 Jul 2009)
Log Message: ----------- Fix using datadir for scripts.
Modified Paths: -------------- trunk/geany-plugins/geanylua/ChangeLog trunk/geany-plugins/geanylua/glspi_init.c
Modified: trunk/geany-plugins/geanylua/ChangeLog =================================================================== --- trunk/geany-plugins/geanylua/ChangeLog 2009-07-13 15:33:35 UTC (rev 813) +++ trunk/geany-plugins/geanylua/ChangeLog 2009-07-13 15:47:41 UTC (rev 814) @@ -1,6 +1,10 @@ +July 13, 2009 (ntrel) + Fix using datadir for scripts. + June 24, 2009 (eht16) Build libdir and datadir paths on Windows using the installation directory as prefix. This still can be improved. + June 23, 2009 (ntrel) Look for support library in LIBDIR/geany-plugins/geanylua. Read scripts from DATADIR/geany-plugins/geanylua.
Modified: trunk/geany-plugins/geanylua/glspi_init.c =================================================================== --- trunk/geany-plugins/geanylua/glspi_init.c 2009-07-13 15:33:35 UTC (rev 813) +++ trunk/geany-plugins/geanylua/glspi_init.c 2009-07-13 15:47:41 UTC (rev 814) @@ -447,7 +447,7 @@ g_free(install_dir); return result; #else - return g_strdup(LIBDIR); + return g_strdup(DATADIR); #endif }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.