Makefile: Fix code style
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Tue, 26 Oct 2021 17:54:12 +0000 (10:54 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:37 +0000 (19:08 +0530)
Fix lines going over 80 columns.

Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
configure.ac

index 2a7bbcd..3657d50 100755 (executable)
@@ -211,7 +211,7 @@ AM_CONDITIONAL(MIDI, test "${enable_midi}" = "yes")
 
 if (test "${enable_midi}" = "yes"); then
        PKG_CHECK_MODULES(ALSA, alsa, dummy=yes,
-                               AC_MSG_ERROR(ALSA lib is required for MIDI support))
+                       AC_MSG_ERROR(ALSA lib is required for MIDI support))
        AC_SUBST(ALSA_CFLAGS)
        AC_SUBST(ALSA_LIBS)
 fi
@@ -430,14 +430,14 @@ AM_CONDITIONAL(ANDROID, test "${enable_android}" = "yes")
 
 if (test "${enable_android}" = "yes"); then
        PKG_CHECK_MODULES(SBC, sbc >= 1.2, dummy=yes,
-                                       AC_MSG_ERROR(SBC library >= 1.2 is required))
+                       AC_MSG_ERROR(SBC library >= 1.2 is required))
        AC_SUBST(SBC_CFLAGS)
        AC_SUBST(SBC_LIBS)
 fi
 
 if (test "${enable_android}" = "yes"); then
        PKG_CHECK_MODULES(SPEEXDSP, speexdsp >= 1.2, dummy=yes,
-                                       AC_MSG_ERROR(SPEEXDSP library >= 1.2 is required))
+                       AC_MSG_ERROR(SPEEXDSP library >= 1.2 is required))
        AC_SUBST(SPEEXDSP_CFLAGS)
        AC_SUBST(SPEEXDSP_LIBS)
 fi