Ticket #1607 (accepted defect) — at Version 4
undelfs check broken in configure(.ac)
Reported by: | olfway | Owned by: | slavazanko |
---|---|---|---|
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 (last modified by andrew_b) (diff)
$./configure --with-screen=ncurses --disable-vfs-undelfs
$fgrep 'USE_UNDEL_FS' config.status
S["USE_UNDEL_FS_FALSE"]="#"
S["USE_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])
Change History
comment:2 Changed 15 years ago by slavazanko
- Status changed from new to accepted
- Owner set to slavazanko
- severity changed from no branch to on review
Note: See
TracTickets for help on using
tickets.
It's disabled by default. Why you need --disable-vfs-undelfs?