1999-07-25 Jacob Berkman <jberkman@andrew.cmu.edu>

* configure.in (undelfs_o): test against 'xyes' and not 'yes'
This commit is contained in:
Jacob Berkman 1999-07-26 00:55:56 +00:00
parent 09373628b3
commit 498903ace9
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
1999-07-25 Jacob Berkman <jberkman@andrew.cmu.edu>
* configure.in (undelfs_o): test against 'xyes' and not 'yes'
1999-07-21 Paul Sheer <psheer@obsidian.co.za>
* gtkedit.c, edit.c, editcmd.c, syntax.c, edit.h, bookmark.c,

View File

@ -964,9 +964,9 @@ AC_ARG_WITH(netrc,
undelfs_o=""
AC_DEFUN(AC_EXT2_UNDEL, [
GNOME_UNDELFS_CHECKS
if test "$ext2fs_undel" = yes; then
if test "$ext2fs_undel" = xyes; then
AC_MSG_RESULT(With ext2fs file recovery code)
vfs_flags="${vfs_flags}, undelfs"
vfs_flags="$vfs_flags, undelfs"
undelfs_o="undelfs.o"
LIBS="$LIBS $EXT2FS_UNDEL_LIBS"
else