diff -Naur e2fsprogs-1.45.1.orig/configure e2fsprogs-1.45.1/configure
old
|
new
|
|
14511 | 14511 | |
14512 | 14512 | if test -d "/etc/cron.d"; then : |
14513 | 14513 | with_crond_dir="/etc/cron.d" |
| 14514 | else |
| 14515 | have_crond="no"; with_crond_dir="" |
14514 | 14516 | fi |
14515 | 14517 | |
14516 | 14518 | fi |
diff -Naur e2fsprogs-1.45.1.orig/configure.ac e2fsprogs-1.45.1/configure.ac
old
|
new
|
|
1674 | 1674 | AS_IF([test "x${with_crond_dir}" = "xyes"], |
1675 | 1675 | [ |
1676 | 1676 | AS_IF([test -d "/etc/cron.d"], |
1677 | | [with_crond_dir="/etc/cron.d"]) |
| 1677 | [with_crond_dir="/etc/cron.d"], |
| 1678 | [have_crond="no"; with_crond_dir=""]) |
1678 | 1679 | ]) |
1679 | 1680 | AC_MSG_CHECKING([for system crontab dir]) |
1680 | 1681 | crond_dir="${with_crond_dir}" |