mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Make the detection of nsgmls more robust for funny shells.
This commit is contained in:
12
configure
vendored
12
configure
vendored
@ -17441,11 +17441,13 @@ else
|
||||
</book>
|
||||
EOF
|
||||
|
||||
${NSGMLS-false} -s conftest.sgml 1>&5 2>&1
|
||||
if test $? -eq 0; then
|
||||
pgac_cv_check_docbook=yes
|
||||
else
|
||||
pgac_cv_check_docbook=no
|
||||
pgac_cv_check_docbook=no
|
||||
|
||||
if test -n "$NSGMLS"; then
|
||||
$NSGMLS -s conftest.sgml 1>&5 2>&1
|
||||
if test $? -eq 0; then
|
||||
pgac_cv_check_docbook=yes
|
||||
fi
|
||||
fi
|
||||
rm -f conftest.sgml
|
||||
fi
|
||||
|
Reference in New Issue
Block a user