diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-07 12:23:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-07 12:23:44 +0000 |
commit | c0cd9f29d21e85bf5140a62ca6804b3a0ae28a94 (patch) | |
tree | 70a819d45ca49e156e46b3e37127958a4668294a | |
parent | a05c0716c256a95861c01d06b5319f3149fca33a (diff) | |
download | busybox-c0cd9f29d21e85bf5140a62ca6804b3a0ae28a94.tar.gz |
Fix trivial problems: "make clean" cleaning too much
and add #include to pull in __be32 typedef.
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | networking/tcpudp.c | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -931,7 +931,7 @@ endif # CONFIG_MODULES # Directories & files removed with 'make clean' CLEAN_DIRS += $(MODVERDIR) -CLEAN_FILES += busybox* System.map .kernelrelease \ +CLEAN_FILES += busybox busybox_unstripped* System.map .kernelrelease \ .tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map # Directories & files removed with 'make mrproper' diff --git a/networking/tcpudp.c b/networking/tcpudp.c index 0b604af48..07a87b8ed 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c @@ -31,6 +31,7 @@ #include "libbb.h" /* Wants <limits.h> etc, thus included after libbb.h: */ +#include <linux/types.h> /* for __be32 etc */ #include <linux/netfilter_ipv4.h> // TODO: move into this file: |