diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-21 01:38:47 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-21 01:38:47 +0000 |
commit | 30983942fc0341d80de1c45d5457b8483cca438c (patch) | |
tree | 7bee3731e0be07cdcd94e1bdc47cec9dba00c1cf /package/Makefile | |
parent | 9d9084fcbcbbfe8e8bcfd7fc658e5c424996e204 (diff) | |
download | master-187ad058-30983942fc0341d80de1c45d5457b8483cca438c.tar.gz master-187ad058-30983942fc0341d80de1c45d5457b8483cca438c.tar.bz2 master-187ad058-30983942fc0341d80de1c45d5457b8483cca438c.zip |
Add missing ulogd dependencies
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@999 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/Makefile b/package/Makefile index e360e8685f..e8a2a914e9 100644 --- a/package/Makefile +++ b/package/Makefile @@ -166,6 +166,14 @@ ifeq ($(BR2_PACKAGE_SNORT_ENABLE_INLINE),y) snort-compile: iptables-compile endif +ulogd-compile: iptables-compile +ifneq ($(BR2_PACKAGE_ULOGD_MYSQL),) +ulogd-compile: mysql-compile +endif +ifneq ($(BR2_PACKAGE_ULOGD_PGSQL),) +ulogd-compile: postgresql-compile +endif + sdk-compile: $(DEV_LIBS_COMPILE) $(SDK_DEFAULT_COMPILE) openwrt-install $(patsubst %,%-prepare,$(package-y) $(package-m) $(package-)): linux-install |