Ticket #1607 (closed defect: fixed)
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: | committed-master |
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
comment:3 Changed 15 years ago by olfway
i'm compiling it with "gentoo-prefix" on osx, there is line in ebuild:
$(use_enable kernel_linux vfs-undelfs)
that translates into --enable-vfs-undelfs if you have linux kernel and to --disable-vfs-undelfs if you don't
comment:6 Changed 15 years ago by slavazanko
- Votes for changeset changed from iNode to iNode slavazanko
- severity changed from on review to approved
Note: See
TracTickets for help on using
tickets.
It's disabled by default. Why you need --disable-vfs-undelfs?