From 76b82cfd6f06bcc65850eb045f05a2c9af861d83 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 26 May 2006 13:38:43 +0000 Subject: [PATCH] =?utf8?q?-=20make=20find=5Fmount=5Fpoint=20conditional=20?= =?utf8?q?on=20df=20and=20eject;=20Fixes=20`make=20hosttools=C2=B4=20on=20?= =?utf8?q?=20=20hosts=20where=20mntent.h=20does=20not=20exist.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- libbb/Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 7d1686d..f05b8ec 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in @@ -14,7 +14,7 @@ LIBBB-y:= \ bb_asprintf.c ask_confirmation.c change_identity.c chomp.c \ compare_string_array.c concat_path_file.c copy_file.c copyfd.c \ crc32.c create_icmp_socket.c create_icmp6_socket.c \ - device_open.c dump.c error_msg.c error_msg_and_die.c find_mount_point.c \ + device_open.c dump.c error_msg.c error_msg_and_die.c \ find_pid_by_name.c find_root_device.c fgets_str.c full_read.c \ full_write.c get_last_path_component.c get_line_from_file.c \ herror_msg.c herror_msg_and_die.c \ @@ -48,7 +48,8 @@ LIBBB-$(CONFIG_FEATURE_HTTPD_AUTH_MD5)+= pw_encrypt.c LIBBB-$(CONFIG_VLOCK)+= correct_password.c LIBBB-$(CONFIG_SU)+= correct_password.c LIBBB-$(CONFIG_LOGIN)+= correct_password.c - +LIBBB-$(CONFIG_DF)+= find_mount_point.c +LIBBB-$(CONFIG_EJECT)+= find_mount_point.c LIBBB-y:=$(patsubst %,$(srcdir)/%,$(LIBBB-y)) -- 2.7.4