19 lines
397 B
Diff
19 lines
397 B
Diff
|
Description: force a swig rebuild
|
||
|
which is skipped for "releases" (i.e. when there's no .git directory)
|
||
|
Origin: vendor
|
||
|
Forwarded: no
|
||
|
Author: gregor herrmann <gregoa@debian.org>
|
||
|
Last-Update: 2018-06-24
|
||
|
|
||
|
--- a/inc/GSLBuilder.pm
|
||
|
+++ b/inc/GSLBuilder.pm
|
||
|
@@ -10,7 +10,7 @@
|
||
|
use base 'Module::Build';
|
||
|
|
||
|
sub is_release {
|
||
|
- return -e '.git' ? 0 : 1;
|
||
|
+ return 0;
|
||
|
}
|
||
|
sub subsystems {
|
||
|
sort qw/
|