1 2 3 4 5 6 7 8 9 10 11 12 13
|
Index: slepc/config/packages/slepc.py
===================================================================
--- slepc.orig/config/packages/slepc.py 2025-11-06 17:41:58.788608915 +0100
+++ slepc/config/packages/slepc.py 2025-11-06 17:41:58.785494016 +0100
@@ -146,7 +146,7 @@
self.gitdate = 'unknown'
self.branch = 'unknown'
else:
- if os.path.exists(os.path.join(self.dir,'.git')):
+ if False and os.path.exists(os.path.join(self.dir,'.git')):
self.log.Exit('Your SLEPc source tree is broken. Use "git status" to check, or remove the entire directory and start all over again')
else:
self.log.write('This is a tarball installation')
|