diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-04 20:58:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-04 20:58:12 +0000 |
commit | bb13f09f1665b9b1f851ce69d13532c73fac0e98 (patch) | |
tree | 446b652dae76b0e3196648eb39400d0ab4aa9885 /extra | |
parent | 8407ee91ddb73395014779d417f8bb1abea976c0 (diff) |
As Peter S. Mazinger has pointed out, the config system wants
some defaults. So give it some empty defaults and let people
select their own options.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/Configs/Config.default | 2 | ||||
-rw-r--r-- | extra/config/confdata.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/extra/Configs/Config.default b/extra/Configs/Config.default new file mode 100644 index 000000000..a93596d42 --- /dev/null +++ b/extra/Configs/Config.default @@ -0,0 +1,2 @@ +# This file is empty to let people select their own +# build options however they like.... diff --git a/extra/config/confdata.c b/extra/config/confdata.c index 114c76382..d0c810dc4 100644 --- a/extra/config/confdata.c +++ b/extra/config/confdata.c @@ -15,7 +15,7 @@ const char conf_def_filename[] = ".config"; -const char conf_defname[] = "extra/Configs/Config.$TARGET_ARCH.default"; +const char conf_defname[] = "extra/Configs/Config.default"; const char *conf_confnames[] = { ".config", |