diff options
author | Wilhelm Schuster | 2016-01-09 02:08:38 +0100 |
---|---|---|
committer | Wilhelm Schuster | 2016-01-09 02:09:12 +0100 |
commit | 825b28311d8d2559dfa333f5221f668d46f97e2f (patch) | |
tree | f262a1ca510157a97e7c5bbb9023c96b2b1666f1 | |
parent | 54b3aeebe66ff1b9b901fe19fffd04d951ab7cdf (diff) | |
download | aur-825b28311d8d2559dfa333f5221f668d46f97e2f.tar.gz |
Fix typo in configuration path
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Maintainer: Wilhelm Schuster <wilhelm [aT] wilhelm [.] re> pkgname=opensmtpd-extras pkgver=5.7.1 -pkgrel=1 +pkgrel=2 pkgdesc="Additional filters, tables, queues, etc. for OpenSMTPd" arch=('i686' 'x86_64') url="https://opensmtpd.org" @@ -78,6 +78,6 @@ package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir/" install - install -Dm644 "extras/wip/filters/filter-regex/filter-regex.conf" "$pkgdir/etc/smptd/filter-regex.conf" + install -Dm644 "extras/wip/filters/filter-regex/filter-regex.conf" "$pkgdir/etc/smtpd/filter-regex.conf" install -Dm644 "extras/wip/queues/queue-python/scripts/queue_ram.py" "$pkgdir/usr/share/opensmtpd/queues/queue-python/scripts/queue_ram.py" } |