# HG changeset patch # User Richard M. Stallman # Date 738788205 0 # Node ID eed4946033599fd64cc9d7c652002f19c13bbeed # Parent 8b23f00096e5782ac4454495e560acd3867b743f When looking for sources, use '.', not `.`. Also '..'. diff -r 8b23f00096e5 -r eed494603359 configure1.in --- a/configure1.in Sun May 30 18:43:01 1993 +0000 +++ b/configure1.in Sun May 30 18:56:45 1993 +0000 @@ -304,10 +304,10 @@ srcdir="${confdir}" else if [ -f "./src/lisp.h" -a -f "./lisp/version.el" ]; then - srcdir=`.` + srcdir='.' else if [ -f "../src/lisp.h" -a -f "../lisp/version.el" ]; then - srcdir=`..` + srcdir='..' else (echo "\ ${progname}: Neither the current directory nor its parent seem to