From 1c9088363b4d865e9421e503df1bb92167e6d88e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20B=C3=83=C2=83=C3=82=C2=BCnzli?= Date: Thu, 20 Dec 2007 14:15:06 -0600 Subject: [PATCH] Fix new installer on macosx. Signed-off-by: Chris Cormack Signed-off-by: Galen Charlton Signed-off-by: Joshua Ferraro --- Makefile.PL | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 8a42a1c39f..da9c4d4d4e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1071,7 +1071,7 @@ sub install { # installation and uninstallation targets. # If installation is on Win32, we need to do permissions different from *nix - if ( $^O =~ /linux|cygwin/ ) { # this value needs to be verified for each platform and modified accordingly + if ( $^O =~ /darwin|linux|cygwin/ ) { # this value needs to be verified for each platform and modified accordingly foreach my $key (sort keys %$target_directories) { $install .= qq( KOHA_INST_$key = blib/$key @@ -1132,9 +1132,6 @@ install :: all install_koha warn_koha_env_vars unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or exists $skip_directories->{$key}; } } - $install .= "\t\t\$(INST_MAN1DIR) \$(DESTINSTALLMAN1DIR) \\\n"; - $install .= "\t\t\$(INST_MAN3DIR) \$(DESTINSTALLMAN3DIR)\n"; - $install .= "\n"; $install .= "warn_koha_env_vars ::\n"; -- 2.39.5