diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-05-07 15:33:43 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-05-07 15:33:43 +0000 |
commit | 07df01e891bdb99fb2e70a13666dfee1191197fc (patch) | |
tree | 47503b3116633e7afa342d03b00288610900930e /openwrt | |
parent | 438c470a70c30e0d196ae533040859ecb5ac37d6 (diff) | |
download | mtk-20170518-07df01e891bdb99fb2e70a13666dfee1191197fc.zip mtk-20170518-07df01e891bdb99fb2e70a13666dfee1191197fc.tar.gz mtk-20170518-07df01e891bdb99fb2e70a13666dfee1191197fc.tar.bz2 |
fix ulogd-mod-pcap packaging
SVN-Revision: 3736
Diffstat (limited to 'openwrt')
-rw-r--r-- | openwrt/package/ulogd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/package/ulogd/Makefile b/openwrt/package/ulogd/Makefile index a399b07..6b85aaa 100644 --- a/openwrt/package/ulogd/Makefile +++ b/openwrt/package/ulogd/Makefile @@ -47,13 +47,13 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,ULOGD,ulogd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,ULOGD_MOD_MYSQL,ulogd-mod-mysql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,ULOGD_MOD_PCAP,ulogd-mod-pcap,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,ULOGD_MOD_PGSQL,ulogd-mod-pgsql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,ULOGD_MOD_EXTRA,ulogd-mod-extra,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) -$(eval $(call PKG_template,ULOGD_MOD_EXTRA,ulogd-mod-pcap,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call IPKG_plugin_template,ULOGD_MOD_MYSQL,MYSQL)) -$(eval $(call IPKG_plugin_template,ULOGD_MOD_PGSQL,PGSQL)) $(eval $(call IPKG_plugin_template,ULOGD_MOD_PCAP,PCAP)) +$(eval $(call IPKG_plugin_template,ULOGD_MOD_PGSQL,PGSQL)) $(eval $(call IPKG_plugin_template,ULOGD_MOD_EXTRA,LOCAL LOGEMU OPRINT PWSNIFF SYSLOG)) $(PKG_BUILD_DIR)/.configured: @@ -113,3 +113,4 @@ $(IPKG_ULOGD): $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ulogd $(IDIR_ULOGD)/usr/sbin/ $(RSTRIP) $(IDIR_ULOGD) $(IPKG_BUILD) $(IDIR_ULOGD) $(PACKAGE_DIR) + |