diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-11-06 15:44:52 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-11-06 15:44:52 +0000 |
commit | 2cff1fb8c9d5a876bbce70dd01564ff4e8bcccfb (patch) | |
tree | 340acd0aa61b18fa7b10eb6c12d8a7e2cf4e2d0a | |
parent | bd6a5f9820b087c655fc93413a54db1f51f1cd93 (diff) | |
download | mtk-20170518-2cff1fb8c9d5a876bbce70dd01564ff4e8bcccfb.zip mtk-20170518-2cff1fb8c9d5a876bbce70dd01564ff4e8bcccfb.tar.gz mtk-20170518-2cff1fb8c9d5a876bbce70dd01564ff4e8bcccfb.tar.bz2 |
fix wrong ulogd plugins build dependencies
SVN-Revision: 2352
-rw-r--r-- | openwrt/package/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 6ca65cc..1165f75 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -427,10 +427,10 @@ snort-compile: iptables-compile endif ulogd-compile: iptables-compile -ifneq ($(BR2_PACKAGE_ULOGD_MYSQL),) +ifneq ($(BR2_PACKAGE_ULOGD_MOD_MYSQL),) ulogd-compile: mysql-compile endif -ifneq ($(BR2_PACKAGE_ULOGD_PGSQL),) +ifneq ($(BR2_PACKAGE_ULOGD_MOD_PGSQL),) ulogd-compile: postgresql-compile endif |