File: ignore_git_hidden_folder_in_config_slepc_py.patch

package info (click to toggle)
slepc 3.23.1%2Bdfsg1-1exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 48,276 kB
  • sloc: ansic: 103,363; python: 6,078; f90: 3,286; cpp: 1,528; makefile: 772; sh: 311
file content (11 lines) | stat: -rw-r--r-- 498 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
--- a/config/packages/slepc.py
+++ b/config/packages/slepc.py
@@ -145,7 +145,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')