From: Alexander Barton Date: Sun, 20 Oct 2013 16:32:50 +0000 (+0200) Subject: Debian: Fix sed(1) rules adjusting "ngircd-full" package X-Git-Tag: rel-21~6 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=8a041373bb81f75a91a00e692979619938199989 Debian: Fix sed(1) rules adjusting "ngircd-full" package Error introduced by last commit :-/ --- diff --git a/contrib/Debian/changelog b/contrib/Debian/changelog index c547703a..89c06e69 100644 --- a/contrib/Debian/changelog +++ b/contrib/Debian/changelog @@ -1,3 +1,10 @@ +ngircd (21~rc2-0ab3) unstable; urgency=low + + * Fix sed(1) rules adjusting "ngircd-full" package, error introduced + by last commit :-/ + + -- Alexander Barton Sun, 20 Oct 2013 18:31:16 +0200 + ngircd (21~rc2-0ab2) unstable; urgency=low * Fix default "HelpFile" file name in ngircd.conf for "full" packages. diff --git a/contrib/Debian/rules b/contrib/Debian/rules index c824db09..4df0609c 100755 --- a/contrib/Debian/rules +++ b/contrib/Debian/rules @@ -159,8 +159,8 @@ install-ngircd-full: build-ngircd-full $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full mkdir -p $(CURDIR)/debian/ngircd-full/var/run/ircd cat $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/sample-ngircd.conf | \ - sed -e "s|;ServerUID = 65534/ServerUID = irc/g" | \ - sed -e "s|;ServerGID = 65534/ServerGID = irc/g" | \ + sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \ + sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \ sed -e "s|;MotdFile = /usr/local/etc/ngircd.motd|MotdFile = /etc/ngircd/ngircd.motd|g" | \ sed -e "s|;HelpFile = /usr/share/doc/ngircd/Commands.txt|HelpFile = /usr/share/doc/ngircd-full/Commands.txt|g" | \ sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \