From: Glenn Washburn <development@efficientek.com>
To: Daniel Kiper <dkiper@net-space.pl>, grub-devel@gnu.org
Cc: Glenn Washburn <development@efficientek.com>
Subject: [PATCH 5/5] configure: Whitespace changes to improve readability
Date: Fri, 18 Mar 2022 01:41:39 -0500 [thread overview]
Message-ID: <28a9336ac76bdaa88ca78ded3efd9d21a860cbf4.1647585376.git.development@efficientek.com> (raw)
In-Reply-To: <cover.1647585376.git.development@efficientek.com>
Signed-off-by: Glenn Washburn <development@efficientek.com>
---
configure.ac | 99 ++++++++++++++++++++++++----------------------------
1 file changed, 45 insertions(+), 54 deletions(-)
diff --git a/configure.ac b/configure.ac
index 17679b641d..641cbb80df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -112,18 +112,10 @@ case "$target_cpu" in
target_cpu=mips
machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_CPU_MIPS=1"
;;
- arm*)
- target_cpu=arm
- ;;
- aarch64*)
- target_cpu=arm64
- ;;
- riscv32*)
- target_cpu=riscv32
- ;;
- riscv64*)
- target_cpu=riscv64
- ;;
+ arm*) target_cpu=arm ;;
+ aarch64*) target_cpu=arm64 ;;
+ riscv32*) target_cpu=riscv32 ;;
+ riscv64*) target_cpu=riscv64 ;;
esac
# Specify the platform (such as firmware).
@@ -252,7 +244,7 @@ case "$platform" in
emu) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_EMU=1" ;;
loongson) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_MIPS_LOONGSON=1" ;;
qemu_mips) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_MIPS_QEMU_MIPS=1" ;;
- arc) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_ARC=1" ;;
+ arc) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_ARC=1" ;;
esac
if test x${target_cpu} = xmipsel ; then
machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE=`echo mips_$platform | sed y,abcdefghijklmnopqrstuvwxyz,ABCDEFGHIJKLMNOPQRSTUVWXYZ,`"
@@ -1476,9 +1468,9 @@ int va_arg_func (int fixed, va_list args);]], [[]])],
CPPFLAGS="$SAVED_CPPFLAGS"
])
-if test x"$grub_cv_cc_isystem" = xyes ; then
- TARGET_CPPFLAGS="$TARGET_CPPFLAGS -nostdinc -isystem `$TARGET_CC -print-file-name=include`"
-fi
+ if test x"$grub_cv_cc_isystem" = xyes ; then
+ TARGET_CPPFLAGS="$TARGET_CPPFLAGS -nostdinc -isystem `$TARGET_CC -print-file-name=include`"
+ fi
fi
AC_CACHE_CHECK([whether -Wtrampolines work], [grub_cv_cc_wtrampolines], [
@@ -1509,9 +1501,9 @@ AC_ARG_ENABLE([mm-debug],
AS_HELP_STRING([--enable-mm-debug],
[include memory manager debugging]))
if test x$enable_mm_debug = xyes; then
- MM_DEBUG=1
+ MM_DEBUG=1
else
- MM_DEBUG=0
+ MM_DEBUG=0
fi
AC_SUBST([MM_DEBUG])
@@ -1547,62 +1539,61 @@ AC_ARG_ENABLE([grub-emu-pci],
if test "$platform" = emu; then
-if test x"$enable_grub_emu_sdl" = xno ; then
- grub_emu_sdl_excuse="explicitly disabled"
-fi
-[if [ x"$grub_emu_sdl_excuse" = x ]; then
+ if test x"$enable_grub_emu_sdl" = xno ; then
+ grub_emu_sdl_excuse="explicitly disabled"
+ fi
+ [if [ x"$grub_emu_sdl_excuse" = x ]; then
# Check for libSDL libraries.]
AC_CHECK_LIB([SDL], [SDL_Init], [LIBSDL="-lSDL"],
[grub_emu_sdl_excuse=["libSDL libraries are required to build \`grub-emu' with SDL support"]])
AC_SUBST([LIBSDL])
-[fi]
+ [fi]
-[if [ x"$grub_emu_sdl_excuse" = x ]; then
+ [if [ x"$grub_emu_sdl_excuse" = x ]; then
# Check for headers.]
AC_CHECK_HEADERS([SDL/SDL.h], [],
[grub_emu_sdl_excuse=["libSDL header file is required to build \`grub-emu' with SDL support"]])
-[fi]
+ [fi]
-if test x"enable_grub_emu_sdl" = xyes && test x"$grub_emu_sdl_excuse" != x ; then
+ if test x"enable_grub_emu_sdl" = xyes && test x"$grub_emu_sdl_excuse" != x ; then
AC_MSG_ERROR([SDL support for grub-emu was explicitly requested but can't be compiled ($grub_emu_sdl_excuse)])
-fi
-if test x"$grub_emu_sdl_excuse" = x ; then
-enable_grub_emu_sdl=yes
-else
-enable_grub_emu_sdl=no
-fi
+ fi
+ if test x"$grub_emu_sdl_excuse" = x ; then
+ enable_grub_emu_sdl=yes
+ else
+ enable_grub_emu_sdl=no
+ fi
-if test x"$enable_grub_emu_pci" != xyes ; then
- grub_emu_pci_excuse="not enabled"
-fi
+ if test x"$enable_grub_emu_pci" != xyes ; then
+ grub_emu_pci_excuse="not enabled"
+ fi
-[if [ x"$grub_emu_pci_excuse" = x ]; then
- # Check for libpci libraries.]
- AC_CHECK_LIB([pciaccess], [pci_system_init], [LIBPCIACCESS="-lpciaccess"],
+ [if [ x"$grub_emu_pci_excuse" = x ]; then
+ # Check for libpci libraries.]
+ AC_CHECK_LIB([pciaccess], [pci_system_init], [LIBPCIACCESS="-lpciaccess"],
[grub_emu_pci_excuse=["need libpciaccess library"]])
AC_SUBST([LIBPCIACCESS])
-[fi]
-[if [ x"$grub_emu_pci_excuse" = x ]; then
+ [fi]
+ [if [ x"$grub_emu_pci_excuse" = x ]; then
# Check for headers.]
AC_CHECK_HEADERS([pciaccess.h], [],
[grub_emu_pci_excuse=["need libpciaccess headers"]])
-[fi]
+ [fi]
-if test x"$grub_emu_pci_excuse" = x ; then
-enable_grub_emu_pci=yes
-else
-
-enable_grub_emu_pci=no
-fi
+ if test x"$grub_emu_pci_excuse" = x ; then
+ enable_grub_emu_pci=yes
+ else
+ enable_grub_emu_pci=no
+ fi
-AC_SUBST([enable_grub_emu_sdl])
-AC_SUBST([enable_grub_emu_pci])
+ AC_SUBST([enable_grub_emu_sdl])
+ AC_SUBST([enable_grub_emu_pci])
else
-# Ignore --enable-emu-* if platform is not emu
-enable_grub_emu_sdl=no
-enable_grub_emu_pci=no
+ # Ignore --enable-emu-* if platform is not emu
+ enable_grub_emu_sdl=no
+ enable_grub_emu_pci=no
fi
AC_ARG_ENABLE([grub-mkfont],
@@ -1634,9 +1625,9 @@ if test x"$enable_grub_mkfont" = xyes && test x"$grub_mkfont_excuse" != x ; then
AC_MSG_ERROR([grub-mkfont was explicitly requested but can't be compiled ($grub_mkfont_excuse)])
fi
if test x"$grub_mkfont_excuse" = x ; then
-enable_grub_mkfont=yes
+ enable_grub_mkfont=yes
else
-enable_grub_mkfont=no
+ enable_grub_mkfont=no
fi
AC_SUBST([enable_grub_mkfont])
--
2.27.0
next prev parent reply other threads:[~2022-03-18 6:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-18 6:41 [PATCH 0/5] Configure cleanups and a fix Glenn Washburn
2022-03-18 6:41 ` [PATCH 1/5] configure: Allow HOST_CC to override CC Glenn Washburn
2022-03-24 13:37 ` Daniel Kiper
2022-03-18 6:41 ` [PATCH 2/5] configure: Sort AM_CONDITIONALs alphabetically Glenn Washburn
2022-03-18 6:41 ` [PATCH 3/5] configure: Remove dead code Glenn Washburn
2022-03-18 6:41 ` [PATCH 4/5] configure: Remove unused CFLAGS definitions Glenn Washburn
2022-03-18 6:41 ` Glenn Washburn [this message]
2022-03-24 13:31 ` [PATCH 0/5] Configure cleanups and a fix Daniel Kiper
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=28a9336ac76bdaa88ca78ded3efd9d21a860cbf4.1647585376.git.development@efficientek.com \
--to=development@efficientek.com \
--cc=dkiper@net-space.pl \
--cc=grub-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.