aboutsummaryrefslogtreecommitdiff
path: root/libbb/Kbuild.src
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-12-14 15:12:52 +0000
committerRon Yorston <rmy@pobox.com>2018-12-14 17:41:23 +0000
commit575581082befff0e049ef67fa36bbdd2ca737e29 (patch)
tree047f75d89b1c88838bd95e1335b51a62ee5ed615 /libbb/Kbuild.src
parent858091c25687727c335880dca459fe5b24259009 (diff)
downloadbusybox-w32-575581082befff0e049ef67fa36bbdd2ca737e29.tar.gz
busybox-w32-575581082befff0e049ef67fa36bbdd2ca737e29.tar.bz2
busybox-w32-575581082befff0e049ef67fa36bbdd2ca737e29.zip
ash: move code from setup_environment()
ash calls setup_environment() but only uses a small amount of its functionality. Moving the code into ash itself means we don't need to customise setup_environment() for WIN32 and can remove it from the build.
Diffstat (limited to 'libbb/Kbuild.src')
-rw-r--r--libbb/Kbuild.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/Kbuild.src b/libbb/Kbuild.src
index 9323a8968..43ededbea 100644
--- a/libbb/Kbuild.src
+++ b/libbb/Kbuild.src
@@ -66,7 +66,6 @@ lib-y += safe_poll.o
66lib-y += safe_strncpy.o 66lib-y += safe_strncpy.o
67lib-y += safe_write.o 67lib-y += safe_write.o
68lib-y += securetty.o 68lib-y += securetty.o
69lib-y += setup_environment.o
70lib-y += single_argv.o 69lib-y += single_argv.o
71lib-y += skip_whitespace.o 70lib-y += skip_whitespace.o
72lib-y += str_tolower.o 71lib-y += str_tolower.o
@@ -106,6 +105,7 @@ lib-$(CONFIG_PLATFORM_POSIX) += pidfile.o
106lib-$(CONFIG_PLATFORM_POSIX) += print_flags.o 105lib-$(CONFIG_PLATFORM_POSIX) += print_flags.o
107lib-$(CONFIG_PLATFORM_POSIX) += progress.o 106lib-$(CONFIG_PLATFORM_POSIX) += progress.o
108lib-$(CONFIG_PLATFORM_POSIX) += read_key.o 107lib-$(CONFIG_PLATFORM_POSIX) += read_key.o
108lib-$(CONFIG_PLATFORM_POSIX) += setup_environment.o
109lib-$(CONFIG_PLATFORM_POSIX) += signals.o 109lib-$(CONFIG_PLATFORM_POSIX) += signals.o
110lib-$(CONFIG_PLATFORM_POSIX) += simplify_path.o 110lib-$(CONFIG_PLATFORM_POSIX) += simplify_path.o
111lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o 111lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o