No longer packaging Makefiles by default

This commit is contained in:
Pierre Pronchery 2006-06-18 22:58:07 +00:00
parent 94581950be
commit 32ac23ef32

View File

@ -859,10 +859,8 @@ static int _dist_subdir(Config * config, FILE * fp, Config * subdir)
} }
if((dist = config_get(subdir, "", "dist")) != NULL) if((dist = config_get(subdir, "", "dist")) != NULL)
_dist_subdir_dist(fp, path, dist); _dist_subdir_dist(fp, path, dist);
fprintf(fp, "%s%s%s%s", "\t\t$(PACKAGE)-$(VERSION)/", path,
path[0] == '\0' ? "" : "/", PROJECT_CONF " \\\n");
fprintf(fp, "%s%s%s%s%s", "\t\t$(PACKAGE)-$(VERSION)/", path, fprintf(fp, "%s%s%s%s%s", "\t\t$(PACKAGE)-$(VERSION)/", path,
path[0] == '\0' ? "" : "/", MAKEFILE, path[0] == '\0' ? "" : "/", PROJECT_CONF,
path[0] == '\0' ? "\n" : " \\\n"); path[0] == '\0' ? "\n" : " \\\n");
return 0; return 0;
} }