aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-30 18:56:45 +0000
committerRichard M. Stallman1993-05-30 18:56:45 +0000
commit426460bf356dfa22de816f55af642794220b43f1 (patch)
treef25a23e596e2bbd64d0842a4a8eecdd006bc30d0
parentc58a1a0cafb86274a04f860dbba6c4052e076ce2 (diff)
downloademacs-426460bf356dfa22de816f55af642794220b43f1.tar.gz
emacs-426460bf356dfa22de816f55af642794220b43f1.zip
When looking for sources, use '.', not `.`. Also '..'.
-rwxr-xr-xconfigure1.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure1.in b/configure1.in
index 9badb35e10d..1758155efd8 100755
--- a/configure1.in
+++ b/configure1.in
@@ -304,10 +304,10 @@ case "${srcdir}" in
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