Skip to content

Commit f2b9aa4

Browse files
committed
Automake 1.16 does not like the extra commas in the drivers variable string
1 parent de8f3b3 commit f2b9aa4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

configure.ac

+5-5
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ fi
121121
# AO output
122122
if test ${enable_output_ao:=yes} = yes; then
123123
XIPH_PATH_AO(AC_DEFINE(DRIVER_AO,1,[Build AO output])
124-
drivers=$drivers' ao.${OBJEXT}',
124+
drivers=$drivers' ao.${OBJEXT}'
125125
enable_output_ao=no
126126
AC_MSG_RESULT([*** AO (libao) not installed ***]))
127127
fi
@@ -141,7 +141,7 @@ fi
141141
if test ${enable_output_esound:=yes} = yes; then
142142
AM_PATH_ESD(0.2.8,
143143
AC_DEFINE(DRIVER_ESOUND,1,[Build EsounD output])
144-
drivers=$drivers' esound.$(OBJEXT)',
144+
drivers=$drivers' esound.$(OBJEXT)'
145145
enable_output_esound=no
146146
AC_MSG_RESULT([*** EsounD (libesd) >= 0.2.8 not installed ***]))
147147
fi
@@ -177,7 +177,7 @@ if test ${enable_output_sdl:=yes} = yes; then
177177
AM_PATH_SDL2(["2.0.0"],
178178
AC_DEFINE(HAVE_SDL_H, 1, [Define to 1 if you have the "SDL.h" header file])
179179
AC_DEFINE(DRIVER_SDL, 1, [Build SDL2 output])
180-
drivers=$drivers' sdl.$(OBJEXT)',
180+
drivers=$drivers' sdl.$(OBJEXT)'
181181
try_sdl12=yes
182182
AC_MSG_RESULT([*** SDL libsdl2 >= 2.0.0 not installed ***])
183183
)
@@ -190,7 +190,7 @@ if test ${enable_output_sdl:=yes} = yes; then
190190
AM_PATH_SDL(["1.2.0"],
191191
AC_DEFINE(HAVE_SDL_H, 1, [Define to 1 if you have the "SDL.h" header file])
192192
AC_DEFINE(DRIVER_SDL, 1, [Build SDL1.x output])
193-
drivers=$drivers' sdl.$(OBJEXT)',
193+
drivers=$drivers' sdl.$(OBJEXT)'
194194
enable_output_sdl=no
195195
AC_MSG_RESULT([*** SDL libsdl >= 1.2.0 not installed ***])
196196
)
@@ -202,7 +202,7 @@ fi
202202
if test ${enable_output_alsa:=yes} = yes; then
203203
AM_PATH_ALSA(0.9.1,
204204
AC_DEFINE(DRIVER_ALSA,1,[Build ALSA output])
205-
drivers=$drivers' alsa.${OBJEXT}',
205+
drivers=$drivers' alsa.${OBJEXT}'
206206
enable_output_alsa=no
207207
AC_MSG_RESULT([*** ALSA (libasound) >= 0.9.1 not installed ***]))
208208
fi

0 commit comments

Comments
 (0)