diff options
| author | Eduardo Habkost <ehabkost@redhat.com> | 2012-04-18 16:55:47 -0300 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-04-24 09:50:31 -0500 |
| commit | c41cc50f66ea0e319cebd858af95423c880f8149 (patch) | |
| tree | 45e1e07e8c714cade5457b7449b64ce9a76e4dd3 /scripts | |
| parent | 9afa52ceb2a2e19ccfb69e13eab558613a93fb6c (diff) | |
| download | focaccia-qemu-c41cc50f66ea0e319cebd858af95423c880f8149.tar.gz focaccia-qemu-c41cc50f66ea0e319cebd858af95423c880f8149.zip | |
create_config: remove *dir block
Now only the qemu_*dir variables will become #defines. The other directory names aren't used by the C code. That means the following #defines won't be available in C code anymore: - CONFIG_QEMU_BINDIR - CONFIG_QEMU_LIBDIR - CONFIG_QEMU_INCLUDEDIR - CONFIG_QEMU_MANDIR - CONFIG_QEMU_SYSCONFDIR - CONFIG_QEMU_LIBEXECDIR The following #defines are going to be kept because they are handled by the qemu_* block on create_config: - CONFIG_QEMU_CONFDIR - CONFIG_QEMU_DATADIR - CONFIG_QEMU_DOCDIR This one will be kept because it is set directly by ./configure: - CONFIG_QEMU_HELPERDIR This patch keeps the 'prefix=*' (CONFIG_QEMU_PREFIX) pattern because other variables may use $prefix on their config-host.mak definitions. The remaining code will be simplified on a further patch. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/create_config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create_config b/scripts/create_config index f9ba2f54a9..1d06eb1ce1 100755 --- a/scripts/create_config +++ b/scripts/create_config @@ -22,7 +22,7 @@ case $line in # save for the next definitions eval "$name=\$define_value" ;; - prefix=* | [a-z]*dir=*) # directory configuration + prefix=*) name=${line%=*} value=${line#*=} define_name=`echo $name | LC_ALL=C tr '[a-z]' '[A-Z]'` |