diff options
author | James Henstridge <james@daa.com.au> | 2002-03-11 13:15:14 +0000 |
---|---|---|
committer | James Henstridge <jamesh@src.gnome.org> | 2002-03-11 13:15:14 +0000 |
commit | 62236a251854191512b404d5ebc2e2df2b89e759 (patch) | |
tree | 9b60f846ace4ae1c25d539e3bad2e2885cee3d24 /configure.in | |
parent | 9f84cd972fcb0b99b80b04255bee8f2e754bfd84 (diff) | |
download | nautilus-62236a251854191512b404d5ebc2e2df2b89e759.tar.gz |
build fix: get rid of unneeded semicolons which cause compile errors with
2002-03-11 James Henstridge <james@daa.com.au>
* configure.in: build fix: get rid of unneeded semicolons which
cause compile errors with newer versions of autoconf (this doesn't
break older versions).
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 101acdd39..d856c61f2 100644 --- a/configure.in +++ b/configure.in @@ -130,10 +130,10 @@ dnl ========================================================================== dnl cdda -AM_CONDITIONAL(HAVE_CDDA, false); +AM_CONDITIONAL(HAVE_CDDA, false) AC_CHECK_HEADERS(cdda_interface.h cdda_paranoia.h, [ - CDDA_LIBS="-lcdda_paranoia -lcdda_interface"; - AM_CONDITIONAL(HAVE_CDDA, true); + CDDA_LIBS="-lcdda_paranoia -lcdda_interface" + AM_CONDITIONAL(HAVE_CDDA, true) ]) dnl ========================================================================== |