Browse Source

Only work on GUI modules when --gui is supplied to Build.PL

Alessandro Ranellucci 11 years ago
parent
commit
2ecc31c0aa
1 changed files with 4 additions and 7 deletions
  1. 4 7
      Build.PL

+ 4 - 7
Build.PL

@@ -29,18 +29,15 @@ my %recommends = qw(
     XML::SAX::ExpatXS               0
 );
 if ($ARGV[0] eq '--gui') {
-    %prereqs = (%prereqs, qw(
+    %prereqs = qw(
     Wx                              0.9901
-    ));
-    %recommends = (%recommends, qw(
+    );
+    %recommends = qw(
     Wx::GLCanvas                    0
     OpenGL                          0
-    ));
+    );
 }
 
-# removed:
-# Wx 0.9901
-
 my $missing_prereqs = 0;
 if ($ENV{SLIC3R_NO_AUTO}) {
     foreach my $module (sort keys %prereqs) {