diff options
author | Daniil Baturin <daniil.baturin@vyatta.com> | 2011-11-05 03:47:45 +0700 |
---|---|---|
committer | Daniil Baturin <daniil.baturin@vyatta.com> | 2011-11-05 03:47:45 +0700 |
commit | 5c64c97704308e3ba80e1c8ec202e22cea3c5a26 (patch) | |
tree | 1a5a0444294a756412a36451ffcb8b820cb029f5 /Makefile.am | |
parent | 7e3ffc2b950e9713840c5a262edd2ca35113be8d (diff) | |
download | vyatta-conntrack-5c64c97704308e3ba80e1c8ec202e22cea3c5a26.tar.gz vyatta-conntrack-5c64c97704308e3ba80e1c8ec202e22cea3c5a26.zip |
Fix automake rules to match new name of cfg templates directory.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c029a82..bd2c2d9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,11 +1,14 @@ cfgdir = $(datadir)/vyatta-cfg/templates curverdir = $(sysconfdir)/config-migrate/current +modprobedir = /etc/modprobe.d curver_DATA = cfg-version/conntrack@1 +modprobe_DATA = etc/modprobe.d/vyatta_nf_conntrack.conf + cpiop = find . ! -regex '\(.*~\|.*\.bak\|.*\.swp\|.*\#.*\#\)' -print0 | \ cpio -0pd install-exec-hook: mkdir -p $(DESTDIR)$(cfgdir) - cd templates; $(cpiop) $(DESTDIR)$(cfgdir) + cd templates-cfg; $(cpiop) $(DESTDIR)$(cfgdir) |