diff options
author | Robert Nagy <robert@openbsd.org> | 2010-12-07 21:05:41 +0100 |
---|---|---|
committer | Robert Nagy <robert@openbsd.org> | 2010-12-07 21:05:41 +0100 |
commit | 438bff402f3246711b9ddce6fe4c25e13e716f33 (patch) | |
tree | 53fd1257669204c1d6d677d38fbc3c40218cf53f /Makefile.in | |
parent | 2b53e0dd07974d82712d0fb79fb573994b5ce16c (diff) |
unbreak the install target by adding the missing && token
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 694141ed8cc8..b7201057c28a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,7 +10,7 @@ all: dmake/dmake@EXEEXT@ fetch install: @. ./*[Ee]nv.[Ss]et.sh && \ - echo "Installing in $${prefix:-@prefix@}..." + echo "Installing in $${prefix:-@prefix@}..." && \ ooinstall "$${prefix:-@prefix@}" && \ echo "" && \ echo "Installation finished, you can now execute:" && \ |