From: Paul Eggert Date: Tue, 24 Dec 2002 08:30:59 +0000 (+0000) Subject: (cvs-update): Don't assume that the shell supports $(...), as X-Git-Tag: BISON-1_875~42 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/366041f014bdbee04c16f7cca7168abf7f01ca38?ds=sidebyside (cvs-update): Don't assume that the shell supports $(...), as Solaris sh doesn't. --- diff --git a/Makefile.maint b/Makefile.maint index 83efdf30..514416f1 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -355,7 +355,7 @@ wget-update: $(get-targets) cvs-update: for f in $(cvs_files); do \ test -f $$f || { echo "*** skipping $$f" 1>&2; continue; }; \ - file=$$(basename $$f); \ + file=`basename $$f`; \ echo checking out $$file...; \ $(CVS) -d $(automake_repo) co -p automake/lib/$$file> $$f.t \ && $(move_if_change) $$f.t $$f; \