From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59446) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFV0L-0008SP-K1 for qemu-devel@nongnu.org; Wed, 04 Apr 2012 14:32:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFV0D-0001lg-VH for qemu-devel@nongnu.org; Wed, 04 Apr 2012 14:32:25 -0400 Received: from mx1.redhat.com ([209.132.183.28]:9098) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFV0D-0001jq-MZ for qemu-devel@nongnu.org; Wed, 04 Apr 2012 14:32:17 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q34IWCcr032281 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 4 Apr 2012 14:32:12 -0400 From: Eduardo Habkost Date: Wed, 4 Apr 2012 15:32:22 -0300 Message-Id: <1333564345-13011-12-git-send-email-ehabkost@redhat.com> In-Reply-To: <1333564345-13011-1-git-send-email-ehabkost@redhat.com> References: <1333564345-13011-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 11/14] create_config: remove *dir block List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini 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 --- scripts/create_config | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/create_config b/scripts/create_config index f9ba2f5..1d06eb1 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]'` -- 1.7.3.2