Ticket #1607 (new defect) — at Initial Version

Opened 15 years ago

Last modified 15 years ago

undelfs check broken in configure(.ac)

Reported by: olfway Owned by:
Priority: major Milestone: 4.7.0-pre4
Component: mc-core Version: 4.7.0-pre2
Keywords: Cc:
Blocked By: Blocking:
Branch state: Votes for changeset:

Description

$./configure --with-screen=ncurses --disable-vfs-undelfs
$fgrep 'USE_UNDEL_FS' config.status
SUSE_UNDEL_FS_FALSE?="#"
SUSE_UNDEL_FS_TRUE?=""

it it will tries to build undelfs vfs even if you specify --disable
configure.ac:
AM_CONDITIONAL(USE_UNDEL_FS, [test -n "$enable_vfs_undelfs"])
should be replaced with
AM_CONDITIONAL(USE_UNDEL_FS, [test x"$enable_vfs_undelfs" = xyes])

Note: See TracTickets for help on using tickets.