Skip to content

Commit 867b0d4

Browse files
authored
GNUmake: Fix Python Install (force) (#2655)
Local developers and cached CI installs ddi never install `pywarpx` if and old version existed. The `--force` must be with us.
1 parent b363379 commit 867b0d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Make.WarpX

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ endif
235235

236236
installwarpx: libwarpx.$(PYDIM).so
237237
mv libwarpx.$(PYDIM).so Python/pywarpx
238-
cd Python; python setup.py install --with-libwarpx $(PYDIM) $(PYINSTALLOPTIONS)
238+
cd Python; python setup.py install --force --with-libwarpx $(PYDIM) $(PYINSTALLOPTIONS)
239239

240240
libwarpx.$(PYDIM).a: $(objForExecs)
241241
@echo Making static library $@ ...

0 commit comments

Comments
 (0)