diff options
author | Brian Fox <bfox@gnu.org> | 1993-09-19 00:17:52 +0000 |
---|---|---|
committer | Brian Fox <bfox@gnu.org> | 1993-09-19 00:17:52 +0000 |
commit | 0edd271a3604744f073c2fcdde8b7278ed0819ac (patch) | |
tree | 18eb846434c5fe8e5b966a44e43fea6b8aee1911 /make-dist | |
parent | 8e7e8de0ea5f38e6d728022e542b195826d93b3d (diff) | |
download | emacs-0edd271a3604744f073c2fcdde8b7278ed0819ac.tar.gz |
Fixed naked backquotes in "echo" strings
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-dist b/make-dist index 4016fe88ea4..e4d10124d42 100755 --- a/make-dist +++ b/make-dist @@ -99,7 +99,7 @@ rm -f /tmp/el /tmp/elc ### Make sure configure is newer than configure.in. if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then - echo "`./configure.in' seems to be newer than `./configure.'" >&2 + echo "\`./configure.in' seems to be newer than \`./configure.'" >&2 echo "Attempting to run autoconf." >&2 autoconf fi |