Skip to content

Commit 653c7af

Browse files
authored
Merge pull request #4134 from roystgnr/netgen_reconfigure_fix
Netgen reconfigure fix
2 parents c5cb181 + 8d32151 commit 653c7af

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

configure

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55270,7 +55270,8 @@ then :
5527055270

5527155271
my_top_builddir="$(pwd)"
5527255272

55273-
rm -rf contrib/netgen/build
55273+
rm -f contrib/netgen/.buildstamp
55274+
rm -rf contrib/netgen/build
5527455275
mkdir -p contrib/netgen/build
5527555276

5527655277
mkdir -p contrib/netgen/install

m4/netgen.m4

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,11 @@ AC_DEFUN([CONFIGURE_NETGEN],
4646
dnl apparently not?
4747
my_top_builddir="$(pwd)"
4848
49-
dnl Wipe the old build directory, because it can corrupt a
50-
dnl "fresh" cmake, because cmake sucks
49+
dnl Wipe the old build directory (along with our .buildstamp
50+
dnl that lets us know a build is complete there), because an
51+
dnl old build can corrupt a "fresh" cmake, because cmake
52+
dnl sucks
53+
rm -f contrib/netgen/.buildstamp
5154
rm -rf contrib/netgen/build
5255
mkdir -p contrib/netgen/build
5356

0 commit comments

Comments
 (0)