Fix $(BUILDDIR)/jhalfs/Makefile
Now that we have only lfs, some lines in the Makefile have been removed, but still some shell continuation (&& \) were left. This leads to weird error message (@ non existing command, or so). Remove the continuation characters.
This commit is contained in:
parent
9b99adace9
commit
924a237843
1 changed files with 2 additions and 2 deletions
|
@ -232,7 +232,7 @@ LUSER_wrt_RunAsUser() { # Calculate time with perl, footer to log fil
|
|||
(
|
||||
cat << EOF
|
||||
@source ~/.bashrc && \\
|
||||
\$(CMDSDIR)/`dirname $file`/\$@ >> \$(LOGDIR)/\$@$version 2>&1 && \\
|
||||
\$(CMDSDIR)/`dirname $file`/\$@ >> \$(LOGDIR)/\$@$version 2>&1
|
||||
EOF
|
||||
) >> $MKFILE.tmp
|
||||
}
|
||||
|
@ -248,7 +248,7 @@ CHROOT_wrt_RunAsRoot() { #
|
|||
(
|
||||
cat << EOF
|
||||
@source envars && \\
|
||||
\$(crCMDSDIR)/`dirname $file`/\$@ >>\$(crLOGDIR)/\$@$version 2>&1 && \\
|
||||
\$(crCMDSDIR)/`dirname $file`/\$@ >>\$(crLOGDIR)/\$@$version 2>&1
|
||||
EOF
|
||||
) >> $MKFILE.tmp
|
||||
|
||||
|
|
Reference in a new issue