Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1b4357f4
Commit
1b4357f4
authored
May 30, 1993
by
Jim Blandy
Browse files
* configure.in: Complain if srcdir points at an already-configured
tree.
parent
7b37f67b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
configure1.in
configure1.in
+8
-0
No files found.
configure1.in
View file @
1b4357f4
...
...
@@ -354,6 +354,14 @@ case "${srcdir}" in
* ) srcdir="`(cd ${srcdir}; pwd)`" ;;
esac
#### Make sure that the source directory doesn't already have a
#### configured system in it.
if [ -f "${srcdir}/src/config.h" ] ; then
(echo "${progname}: the directory tree \`${srcdir}' is being used as a build"
echo " directory right now; it has been configured in its own right."
echo " You can't use srcdir in this situation.") >&2
exit 1
fi
### Make the necessary directories, if they don't exist.
if [ ! -d ./src ]; then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment