morpheus

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

commit 50fb96450395a35bbf6ae3d9af59efa863895686
parent 86a95aab0d4639f5f9c7ab8929952c40d844284a
Author: sin <sin@2f30.org>
Date:   Thu, 20 Feb 2014 16:23:53 +0000

Quote variables in build

Diffstat:
Mbuild | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/build b/build @@ -27,23 +27,23 @@ install() { . $1 ( if ! fetch; then - echo "Failed to fetch $1" >> $top/morpheus.log + echo "Failed to fetch $1" >> "$top/morpheus.log" exit 1 fi if ! unpack; then - echo "Failed to unpack $1" >> $top/morpheus.log + echo "Failed to unpack $1" >> "$top/morpheus.log" exit 1 fi if ! patch; then - echo "Failed to patch $1" >> $top/morpheus.log + echo "Failed to patch $1" >> "$top/morpheus.log" exit 1 fi if ! build; then - echo "Failed to build $1" >> $top/morpheus.log + echo "Failed to build $1" >> "$top/morpheus.log" exit 1 fi if ! install; then - echo "Failed to install $1" >> $top/morpheus.log + echo "Failed to install $1" >> "$top/morpheus.log" exit 1 fi )