diff options
author | Rob Landley | 2006-05-08 19:03:07 +0000 |
---|---|---|
committer | Rob Landley | 2006-05-08 19:03:07 +0000 |
commit | a6b5b60942b4e28965f10cb107d4f94aaf756bc1 (patch) | |
tree | e97daaa61ca25179f9cfd9251446d00521bb5ddb /libbb/Makefile.in | |
parent | 712ba85b30426bc8fa093c21ae9a5d0018450cc7 (diff) | |
download | busybox-a6b5b60942b4e28965f10cb107d4f94aaf756bc1.zip busybox-a6b5b60942b4e28965f10cb107d4f94aaf756bc1.tar.gz |
Fiddling with llist to make memory management easier. Specifically, the
option to delete the contents of the list when we delete the list is a
good thing.
Diffstat (limited to 'libbb/Makefile.in')
-rw-r--r-- | libbb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index e7725b8..865b7e7 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in @@ -101,7 +101,7 @@ $(LIBBB_MOBJ5):$(LIBBB_MSRC5) $(compile.c) -DL_$(notdir $*) LIBBB_MSRC6:=$(srcdir)/llist.c -LIBBB_MOBJ6:=llist_add_to.o llist_add_to_end.o llist_free_one.o llist_free.o +LIBBB_MOBJ6:=llist_add_to.o llist_add_to_end.o llist_pop.o llist_free.o LIBBB_MOBJ6:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ6)) $(LIBBB_MOBJ6):$(LIBBB_MSRC6) $(compile.c) -DL_$(notdir $*) |