From: Luiz Augusto von Dentz Date: Tue, 26 Oct 2021 17:54:12 +0000 (-0700) Subject: Makefile: Fix code style X-Git-Tag: submit/tizen/20220313.220938~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8efbcbf8c191fd504916d0f6d925be14d44bf513;p=platform%2Fupstream%2Fbluez.git Makefile: Fix code style Fix lines going over 80 columns. Signed-off-by: Anuj Jain Signed-off-by: Ayush Garg --- diff --git a/configure.ac b/configure.ac index 2a7bbcd..3657d50 100755 --- a/configure.ac +++ b/configure.ac @@ -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