comparison configure1.in @ 3304:eed494603359

When looking for sources, use '.', not `.`. Also '..'.
author Richard M. Stallman <rms@gnu.org>
date Sun, 30 May 1993 18:56:45 +0000
parents 3ac8efebf586
children 6cfb031aabc7
comparison
equal deleted inserted replaced
3303:8b23f00096e5 3304:eed494603359
302 confdir=`echo $0 | sed 's|//|/|' | sed 's|/[^/]*$||'` 302 confdir=`echo $0 | sed 's|//|/|' | sed 's|/[^/]*$||'`
303 if [ -f $confdir/src/lisp.h -a -f $confdir/lisp/version.el ]; then 303 if [ -f $confdir/src/lisp.h -a -f $confdir/lisp/version.el ]; then
304 srcdir="${confdir}" 304 srcdir="${confdir}"
305 else 305 else
306 if [ -f "./src/lisp.h" -a -f "./lisp/version.el" ]; then 306 if [ -f "./src/lisp.h" -a -f "./lisp/version.el" ]; then
307 srcdir=`.` 307 srcdir='.'
308 else 308 else
309 if [ -f "../src/lisp.h" -a -f "../lisp/version.el" ]; then 309 if [ -f "../src/lisp.h" -a -f "../lisp/version.el" ]; then
310 srcdir=`..` 310 srcdir='..'
311 else 311 else
312 (echo "\ 312 (echo "\
313 ${progname}: Neither the current directory nor its parent seem to 313 ${progname}: Neither the current directory nor its parent seem to
314 contain the Emacs sources. If you do not want to build Emacs in its 314 contain the Emacs sources. If you do not want to build Emacs in its
315 source tree, you should run \`${progname}' in the directory in which 315 source tree, you should run \`${progname}' in the directory in which