diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-21 16:22:19 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-21 16:22:19 +0000 |
commit | e3e8225bb2a61f8fae218d6d5d100e5c984b8b79 (patch) | |
tree | 1c9c2267324c08ca7348af44294c22aee6b12782 /libbb | |
parent | b3df5edc425e0e3b1cc93483bd13b551056e780f (diff) | |
download | busybox-w32-e3e8225bb2a61f8fae218d6d5d100e5c984b8b79.tar.gz busybox-w32-e3e8225bb2a61f8fae218d6d5d100e5c984b8b79.tar.bz2 busybox-w32-e3e8225bb2a61f8fae218d6d5d100e5c984b8b79.zip |
Patch from Shaun Jackman to make loop.c build only when needed.
git-svn-id: svn://busybox.net/trunk/busybox@14591 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 7b501531a..6d0d628a0 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -19,7 +19,7 @@ LIBBB-y:= \ | |||
19 | full_write.c get_last_path_component.c get_line_from_file.c \ | 19 | full_write.c get_last_path_component.c get_line_from_file.c \ |
20 | herror_msg.c herror_msg_and_die.c \ | 20 | herror_msg.c herror_msg_and_die.c \ |
21 | human_readable.c inet_common.c inode_hash.c isdirectory.c \ | 21 | human_readable.c inet_common.c inode_hash.c isdirectory.c \ |
22 | kernel_version.c last_char_is.c login.c loop.c \ | 22 | kernel_version.c last_char_is.c login.c \ |
23 | make_directory.c md5.c mode_string.c mtab_file.c \ | 23 | make_directory.c md5.c mode_string.c mtab_file.c \ |
24 | obscure.c parse_mode.c parse_number.c perror_msg.c \ | 24 | obscure.c parse_mode.c parse_number.c perror_msg.c \ |
25 | perror_msg_and_die.c print_file.c get_console.c \ | 25 | perror_msg_and_die.c print_file.c get_console.c \ |
@@ -38,6 +38,7 @@ LIBBB-y:= \ | |||
38 | 38 | ||
39 | # conditionally compiled objects: | 39 | # conditionally compiled objects: |
40 | LIBBB-$(CONFIG_FEATURE_SHADOWPASSWDS)+=pwd2spwd.c | 40 | LIBBB-$(CONFIG_FEATURE_SHADOWPASSWDS)+=pwd2spwd.c |
41 | LIBBB-$(CONFIG_FEATURE_MOUNT_LOOP)+= loop.c | ||
41 | LIBBB-$(CONFIG_FEATURE_MTAB_SUPPORT)+= mtab.c | 42 | LIBBB-$(CONFIG_FEATURE_MTAB_SUPPORT)+= mtab.c |
42 | LIBBB-$(CONFIG_PASSWD)+= pw_encrypt.c | 43 | LIBBB-$(CONFIG_PASSWD)+= pw_encrypt.c |
43 | LIBBB-$(CONFIG_SULOGIN)+= pw_encrypt.c | 44 | LIBBB-$(CONFIG_SULOGIN)+= pw_encrypt.c |