From 61494e43ae5a9b505b7e9e2b62f30e6462e450e8 Mon Sep 17 00:00:00 2001 From: Martin Ebourne Date: Sat, 11 Feb 2006 02:28:52 +0000 Subject: Workaround for autoconf's unexpanded directory substitutions vs. the current Makefile not being able to expand them itself. --- infrastructure/BoxPlatform.pm.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'infrastructure/BoxPlatform.pm.in') diff --git a/infrastructure/BoxPlatform.pm.in b/infrastructure/BoxPlatform.pm.in index 10fbe7cd..9567d585 100644 --- a/infrastructure/BoxPlatform.pm.in +++ b/infrastructure/BoxPlatform.pm.in @@ -13,8 +13,8 @@ BEGIN chomp $build_cpu; # Cygwin Builds usually something like CYGWIN_NT-5.0, CYGWIN_NT-5.1 # Box Backup tried on Win2000,XP only :) - - $build_os = 'CYGWIN' if $build_os =~ m/CYGWIN/; + + $build_os = 'CYGWIN' if $build_os =~ m/CYGWIN/; $make_command = ($build_os eq 'Darwin') ? 'bsdmake' : ($build_os eq 'SunOS') ? 'gmake' : 'make'; $bsd_make = ($build_os ne 'Linux' && $build_os ne 'CYGWIN' && $build_os ne "SunOS"); @@ -34,10 +34,10 @@ BEGIN $product_name = ; chomp $product_name; close VERSION; - + # where to put the files - $install_into_dir = '@bindir@'; - + $install_into_dir = '@bindir_expanded@'; + # if it's Darwin, if($build_os eq 'Darwin') { -- cgit v1.2.3