From 924a2378434b4f256606d91398c12392f0951b46 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Sun, 3 Apr 2022 21:42:25 +0200 Subject: [PATCH] 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. --- common/libs/func_wrt_Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/libs/func_wrt_Makefile b/common/libs/func_wrt_Makefile index 7c5f75a..78bb3e1 100644 --- a/common/libs/func_wrt_Makefile +++ b/common/libs/func_wrt_Makefile @@ -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