mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Address review feedback for configure error change
See GH-3669
This commit is contained in:
parent
b1ee78faf8
commit
83ee47d769
1 changed files with 6 additions and 7 deletions
13
configure
vendored
13
configure
vendored
|
@ -133,8 +133,9 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
sourcedir="$(cd "$(dirname "$0")" && pwd)"
|
sourcedir="$(cd "$(dirname "$0")" && pwd)"
|
||||||
|
|
||||||
if [ ! -e "$sourcedir/cmake/COPYING" ] && [ -d "$sourcedir/.git" ]; then
|
if [ ! -e "$sourcedir/cmake/COPYING" ]; then
|
||||||
echo "\
|
if [ -d "$sourcedir/.git" ]; then
|
||||||
|
echo "\
|
||||||
You seem to be missing the content of the cmake directory.
|
You seem to be missing the content of the cmake directory.
|
||||||
|
|
||||||
This typically means that you performed a non-recursive git clone of
|
This typically means that you performed a non-recursive git clone of
|
||||||
|
@ -142,11 +143,8 @@ Zeek. To check out the required subdirectories, please execute:
|
||||||
|
|
||||||
( cd $sourcedir && git submodule update --recursive --init )
|
( cd $sourcedir && git submodule update --recursive --init )
|
||||||
" >&2
|
" >&2
|
||||||
exit 1
|
else
|
||||||
fi
|
echo "\
|
||||||
|
|
||||||
if [ ! -e "$sourcedir/cmake/COPYING" ] && [ ! -d "$sourcedir/.git" ]; then
|
|
||||||
echo "\
|
|
||||||
You seem to be missing the content of the cmake directory.
|
You seem to be missing the content of the cmake directory.
|
||||||
|
|
||||||
This typically means that you downloaded a non-release archive from github.
|
This typically means that you downloaded a non-release archive from github.
|
||||||
|
@ -161,6 +159,7 @@ clone our repository.
|
||||||
See https://docs.zeek.org/en/master/install.html#retrieving-the-sources for
|
See https://docs.zeek.org/en/master/install.html#retrieving-the-sources for
|
||||||
instructions.
|
instructions.
|
||||||
" >&2
|
" >&2
|
||||||
|
fi
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue