morpheus

suckless linux distro
git clone git://git.2f30.org/morpheus
Log | Files | Refs | Submodules | README | LICENSE

commit dfd6b9a3b0d541c5a6c86f632738fe5bd20be124
parent 7fc57a998aa441f62884a0593456b9d5c0eb00c5
Author: Daniel Bainton <dpb@driftaway.org>
Date:   Sun,  2 Mar 2014 20:30:38 +0000

Fix the sed magic in mkfile

Diffstat:
Mmkfile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mkfile b/mkfile @@ -27,10 +27,10 @@ fetch-all fetch-world:VQ: ${fetchpkgs} sed -e "s,^build:,$pkg:QP./stuff/cmp-pkgs: $pkg-fetch pkgs/$pkg," |\ sed -e "s,^fetch-target:,$pkg-fetch:," |\ sed -e "s,^v=,_${pkg}_v=," |\ - sed -e "s,\$v,\${_${pkg}_v}," |\ - sed -e "s,\$url,\${_${pkg}_url}," |\ - sed -e "s, url=, _${pkg}_url=," |\ - sed -e "s,\$git,\${_${pkg}_git}," |\ + sed -e "s,\$v,\${_${pkg}_v},g" |\ + sed -e "s,\$url,\${_${pkg}_url},g" |\ + sed -e "s, url=, _${pkg}_url=,g" |\ + sed -e "s,\$git,\${_${pkg}_git},g" |\ sed -e "s,^git=,_${pkg}_git=," |\ sed -e "s,^url=,_${pkg}_url=," >> ../pkgs.mk; done }