diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-14 17:07:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-14 17:07:32 +0000 |
commit | 14d354312a9d49a8b410516c20be57159af217a5 (patch) | |
tree | 9dabe9c71ebbdb67f1c56fb97b780a5a823d132f /Makefile | |
parent | cb378a52672d65885c96d6d4b7ed73deac0b967a (diff) | |
download | busybox-w32-14d354312a9d49a8b410516c20be57159af217a5.tar.gz busybox-w32-14d354312a9d49a8b410516c20be57159af217a5.tar.bz2 busybox-w32-14d354312a9d49a8b410516c20be57159af217a5.zip |
Per suggestion from Vladimir, eliminate check_wildcard_match(), which
was only being used by insmod these days.
Also, I spent a minute adjusting insmod so that it first searches
/lib/modules/`uname -r` and then (if that fails) searches /lib/modules,
which makes bb insmod behave much more like the real insmod, and should
avoid nasty surprises (such as the recent "Modutils vs. Busybox..."
thread).
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -236,7 +236,7 @@ endif | |||
236 | 236 | ||
237 | LIBBB = libbb | 237 | LIBBB = libbb |
238 | LIBBB_LIB = libbb.a | 238 | LIBBB_LIB = libbb.a |
239 | LIBBB_CSRC= ask_confirmation.c check_wildcard_match.c chomp.c \ | 239 | LIBBB_CSRC= ask_confirmation.c chomp.c \ |
240 | concat_path_file.c copy_file.c copy_file_chunk.c create_path.c \ | 240 | concat_path_file.c copy_file.c copy_file_chunk.c create_path.c \ |
241 | daemon.c deb_extract.c device_open.c error_msg.c error_msg_and_die.c \ | 241 | daemon.c deb_extract.c device_open.c error_msg.c error_msg_and_die.c \ |
242 | find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \ | 242 | find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \ |