(cvs-update): Don't assume that the shell supports $(...), as

Solaris sh doesn't.
This commit is contained in:
Paul Eggert
2002-12-24 08:30:59 +00:00
parent 80483e8e0d
commit 366041f014

View File

@@ -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; \