Bug 13586: Remove the entire block
authorJonathan Druart <jonathan.druart@biblibre.com>
Mon, 16 Feb 2015 15:28:51 +0000 (16:28 +0100)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Thu, 19 Mar 2015 17:15:04 +0000 (14:15 -0300)
Previous patch remove the condition but not the block tested.
The entire block should be removed.

Signed-off-by: Larry Baerveldt <larry@bywatersolutions.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>

Makefile.PL

index 4ace704..598e0ed 100644 (file)
@@ -1473,24 +1473,6 @@ install :: all install_koha set_koha_ownership set_koha_permissions warn_koha_en
           unless exists $skip_directories->{$key};
                        }
        }
-                                                               # We can attempt some creative things with command line utils such as CACLS which allows permission
-
-           foreach my $key (sort keys %$target_directories) {
-                   $install .= qq(
-KOHA_INST_$key = blib/$key
-KOHA_DEST_$key = $target_directories->{$key}
-) unless exists $skip_directories->{$key};
-               }
-               $install .= qq(
-install :: all install_koha warn_koha_env_vars
-\t\$(NOECHO) \$(NOOP)
-);
-               $install .= "install_koha ::\n";
-               $install .= "\t\$(MOD_INSTALL) \\\n";
-               foreach my $key (sort keys %$target_directories) {
-                       $install .= "\t\t\$(KOHA_INST_$key) \$(KOHA_DEST_$key) \\\n"
-        unless exists $skip_directories->{$key};
-               }
 
        $install .= "\n";