diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 06:09:00 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 06:09:00 +0100 |
commit | 4bc34d4c08eca60070bc74a4f243e377b4177c9e (patch) | |
tree | 8ae01c688035b611e6615685e3c5f8d23566f71d | |
parent | b78d2e2e7ac5c7c75de27580794d6aefd85d6841 (diff) | |
download | zsh-4bc34d4c08eca60070bc74a4f243e377b4177c9e.tar.gz zsh-4bc34d4c08eca60070bc74a4f243e377b4177c9e.zip |
debian/rules: Don't line-break sed expressions. Do line-break before their file parameters
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index ca2b4cbdb..c4d1b7c9f 100755 --- a/debian/rules +++ b/debian/rules @@ -79,7 +79,8 @@ configure-static-stamp: configure mkdir obj-static dh_auto_configure -B obj-static -- $(CONFIGFLAGS) $(STATICFLAGS) # cp debian/static.conf obj-static/Src/mymods.conf - sed -i -e 's/files.mdd link=no/files.mdd link=static/;s/stat.mdd link=no/stat.mdd link=static/' obj-static/config.modules + sed -i -e 's/files.mdd link=no/files.mdd link=static/;s/stat.mdd link=no/stat.mdd link=static/' \ + obj-static/config.modules touch $@ clean: @@ -157,8 +158,7 @@ binary-arch-dynamic: build-arch dh_link -pzsh -pzsh-common -pzsh-dbg dh_install -pzsh -pzsh-common -pzsh-dbg - sed -i -e 's,^local HELPDIR=.*,local HELPDIR=$${HELPDIR:-/usr/share/zsh/help},; \ - s,:-more,:-/usr/bin/pager,;' \ + sed -i -e 's,^local HELPDIR=.*,local HELPDIR=$${HELPDIR:-/usr/share/zsh/help},; s,:-more,:-/usr/bin/pager,;' \ debian/zsh-common/usr/share/zsh/functions/Misc/run-help sed -i -e '1!b;s:^#!.*[ /]zsh:#!/bin/zsh:;s#/usr/local/bin#/usr/bin#;' \ `find debian/zsh-common/usr/share/zsh/functions -type f` |