Fix usage of project base dir
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4132 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
2fe9afdf47
commit
898201f0bb
@ -1,3 +1,10 @@
|
||||
2009-08-27 Lex Trotman <elextr(at)gmail(dot)com>
|
||||
|
||||
* src/build.c
|
||||
Change usage of project base directory to conform with
|
||||
previous documented behavior when loading old project files.
|
||||
|
||||
|
||||
2009-08-27 Lex Trotman <elextr(at)gmail(dot)com>
|
||||
|
||||
* src/build.c:
|
||||
|
22
src/build.c
22
src/build.c
@ -2078,7 +2078,7 @@ void build_load_menu(GKeyFile *config, GeanyBuildSource src, gpointer p)
|
||||
GeanyFiletype *ft;
|
||||
GeanyProject *pj;
|
||||
gchar **ftlist;
|
||||
gchar *value;
|
||||
gchar *value, *basedir;
|
||||
gboolean bvalue;
|
||||
|
||||
if (g_key_file_has_group(config, build_grp_name))
|
||||
@ -2171,19 +2171,31 @@ void build_load_menu(GKeyFile *config, GeanyBuildSource src, gpointer p)
|
||||
case GEANY_BCS_PROJ:
|
||||
if (non_ft_proj==NULL)non_ft_proj = g_new0(GeanyBuildCommand, build_groups_count[GEANY_GBG_NON_FT]);
|
||||
bvalue = g_key_file_get_boolean(config, "project", "make_in_base_path", NULL);
|
||||
value = bvalue?"%p":"%d";
|
||||
if (bvalue)
|
||||
{
|
||||
basedir = g_key_file_get_string(config, "project", "base_path", NULL);
|
||||
if (basedir==NULL || !g_path_is_absolute(basedir))
|
||||
basedir = g_build_filename("%p", basedir, NULL);
|
||||
else
|
||||
basedir = g_strdup(basedir);
|
||||
}
|
||||
else
|
||||
basedir = g_strdup("%d");
|
||||
if (non_ft_pref[GBO_TO_CMD(GEANY_GBO_MAKE_ALL)].old)
|
||||
setptr(non_ft_pref[GBO_TO_CMD(GEANY_GBO_MAKE_ALL)].entries[GEANY_BC_WORKING_DIR], g_strdup(value) );
|
||||
setptr(non_ft_pref[GBO_TO_CMD(GEANY_GBO_MAKE_ALL)].entries[GEANY_BC_WORKING_DIR], g_strdup(basedir));
|
||||
if (non_ft_pref[GBO_TO_CMD(GEANY_GBO_CUSTOM)].old)
|
||||
setptr(non_ft_pref[GBO_TO_CMD(GEANY_GBO_CUSTOM)].entries[GEANY_BC_WORKING_DIR], g_strdup("%d") );
|
||||
setptr(non_ft_pref[GBO_TO_CMD(GEANY_GBO_CUSTOM)].entries[GEANY_BC_WORKING_DIR], g_strdup(basedir));
|
||||
if (non_ft_pref[GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT)].old)
|
||||
setptr(non_ft_pref[GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT)].entries[GEANY_BC_WORKING_DIR], g_strdup("%d"));
|
||||
value = g_key_file_get_string(config, "project", "run_cmd", NULL);
|
||||
if (value !=NULL)
|
||||
if (value!=NULL && strlen(value)>0)
|
||||
{
|
||||
if (exec_proj==NULL)exec_proj = g_new0(GeanyBuildCommand, build_groups_count[GEANY_GBG_EXEC]);
|
||||
ASSIGNIF(exec_proj, GEANY_GBO_EXEC, "_Execute", value);
|
||||
if (exec_proj[GBO_TO_CMD(GEANY_GBO_EXEC)].old)
|
||||
setptr(exec_proj[GBO_TO_CMD(GEANY_GBO_EXEC)].entries[GEANY_BC_WORKING_DIR], g_strdup(basedir));
|
||||
}
|
||||
g_free(basedir);
|
||||
break;
|
||||
case GEANY_BCS_PREF:
|
||||
if (non_ft_pref==NULL)non_ft_pref = g_new0(GeanyBuildCommand, build_groups_count[GEANY_GBG_NON_FT]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user