Skip to content

Commit

Permalink
Fix NS self-contained build configuration
Browse files Browse the repository at this point in the history
* configure.ac: When rebuilding epaths.h for NS check that we're
actually doing an NS build first.
  • Loading branch information
alanthird committed Jun 26, 2021
1 parent a0f0609 commit ecf7e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6020,12 +6020,12 @@ dnl the use of force in the 'epaths-force' rule in Makefile.in.
AC_CONFIG_COMMANDS([src/epaths.h], [
if test "${opsys}" = "mingw32"; then
${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force-w32
elif test "$EN_NS_SELF_CONTAINED" = "yes"; then
elif test "$HAVE_NS" = "yes" && test "$EN_NS_SELF_CONTAINED" = "yes"; then
${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force-ns-self-contained
else
${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force
fi || AC_MSG_ERROR(['src/epaths.h' could not be made.])
], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"
], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys" HAVE_NS="$HAVE_NS"
EN_NS_SELF_CONTAINED="$EN_NS_SELF_CONTAINED"])

dnl NB we have to cheat and use the ac_... version because abs_top_srcdir
Expand Down

0 comments on commit ecf7e8b

Please sign in to comment.