diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-25 23:36:12 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-25 23:36:12 +0000 |
commit | fdc08e1b504751d33f9199a78389195665baef4b (patch) | |
tree | 941788731d13844f569b370d0eddec9b5d852549 /libbb | |
parent | c8056f3baa31ca66f2bf18bae82f2f8de54ff156 (diff) | |
download | busybox-w32-fdc08e1b504751d33f9199a78389195665baef4b.tar.gz busybox-w32-fdc08e1b504751d33f9199a78389195665baef4b.tar.bz2 busybox-w32-fdc08e1b504751d33f9199a78389195665baef4b.zip |
Patch from Amir Shalem to make busybox compile on a uClibc that has no shadow
password support.
git-svn-id: svn://busybox.net/trunk/busybox@11647 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 48acdc5d0..c818502e9 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -10,7 +10,7 @@ LIBBB_DIR:=$(top_builddir)/libbb/ | |||
10 | endif | 10 | endif |
11 | srcdir=$(top_srcdir)/libbb | 11 | srcdir=$(top_srcdir)/libbb |
12 | 12 | ||
13 | LIBBB_SRC:= \ | 13 | LIBBB_SRC-y:= \ |
14 | bb_asprintf.c ask_confirmation.c change_identity.c chomp.c \ | 14 | bb_asprintf.c ask_confirmation.c change_identity.c chomp.c \ |
15 | compare_string_array.c concat_path_file.c copy_file.c copyfd.c \ | 15 | compare_string_array.c concat_path_file.c copy_file.c copyfd.c \ |
16 | correct_password.c create_icmp_socket.c create_icmp6_socket.c \ | 16 | correct_password.c create_icmp_socket.c create_icmp6_socket.c \ |
@@ -23,7 +23,7 @@ LIBBB_SRC:= \ | |||
23 | make_directory.c mode_string.c mtab.c mtab_file.c \ | 23 | make_directory.c mode_string.c mtab.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 \ |
26 | process_escape_sequence.c procps.c pwd2spwd.c pw_encrypt.c qmodule.c \ | 26 | process_escape_sequence.c procps.c pw_encrypt.c qmodule.c \ |
27 | read_package_field.c recursive_action.c remove_file.c \ | 27 | read_package_field.c recursive_action.c remove_file.c \ |
28 | restricted_shell.c run_parts.c run_shell.c safe_read.c safe_write.c \ | 28 | restricted_shell.c run_parts.c run_shell.c safe_read.c safe_write.c \ |
29 | safe_strncpy.c setup_environment.c simplify_path.c \ | 29 | safe_strncpy.c setup_environment.c simplify_path.c \ |
@@ -36,7 +36,9 @@ LIBBB_SRC:= \ | |||
36 | warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c \ | 36 | warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c \ |
37 | bb_echo.c | 37 | bb_echo.c |
38 | 38 | ||
39 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB_DIR)%.o, $(LIBBB_SRC)) | 39 | LIBB_SRC-$(CONFIG_FEATURE_SHADOWPASSWDS)+= pwd2spwd.c |
40 | |||
41 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB_DIR)%.o, $(LIBBB_SRC-y)) | ||
40 | 42 | ||
41 | LIBBB_MSRC0:=$(srcdir)/messages.c | 43 | LIBBB_MSRC0:=$(srcdir)/messages.c |
42 | LIBBB_MOBJ0:=full_version.o \ | 44 | LIBBB_MOBJ0:=full_version.o \ |