diff options
author | lloyd <[email protected]> | 2006-09-08 10:03:34 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-09-08 10:03:34 +0000 |
commit | 3461ac347fa26376abcda48b281ea2438a2e0f77 (patch) | |
tree | f78ae8f63d837fba01e6eedc1aa6e8dc8b6fd769 | |
parent | c02420a8f7cf7557382b4edad60a12725aad8b45 (diff) |
Fix minor spacing issues after the build list
-rwxr-xr-x | configure.pl | 5 | ||||
-rw-r--r-- | misc/config/makefile/nmake.in | 2 | ||||
-rw-r--r-- | misc/config/makefile/unix.in | 2 | ||||
-rw-r--r-- | misc/config/makefile/unix_shr.in | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/configure.pl b/configure.pl index 2e707dd7f..92871a53c 100755 --- a/configure.pl +++ b/configure.pl @@ -1602,6 +1602,8 @@ sub build_cmds { $output .= "$obj_file: $src_file\n$bld_line\n\n"; } + chomp($output); + chomp($output); return $output; } @@ -1631,9 +1633,6 @@ sub print_unix_makefile { my $check_build_cmds = build_cmds($config, $build_check, '$(CHECK_FLAGS)', %$check); - chomp($lib_build_cmds); - chomp($check_build_cmds); - my $install_cmd_exec = os_install_info($os, 'install_cmd'); $install_cmd_exec =~ s/OWNER/\$(OWNER)/; $install_cmd_exec =~ s/GROUP/\$(GROUP)/; diff --git a/misc/config/makefile/nmake.in b/misc/config/makefile/nmake.in index 3a1fd0df9..236d42784 100644 --- a/misc/config/makefile/nmake.in +++ b/misc/config/makefile/nmake.in @@ -67,7 +67,9 @@ all: $(LIBRARIES) # Build Commands # ################################################## @{var:lib_build_cmds} + @{var:check_build_cmds} + ################################################## # Link Commands # ################################################## diff --git a/misc/config/makefile/unix.in b/misc/config/makefile/unix.in index 241c0a662..773fda58d 100644 --- a/misc/config/makefile/unix.in +++ b/misc/config/makefile/unix.in @@ -77,7 +77,9 @@ all: $(LIBRARIES) # Build Commands # ################################################## @{var:lib_build_cmds} + @{var:check_build_cmds} + ################################################## # Link Commands # ################################################## diff --git a/misc/config/makefile/unix_shr.in b/misc/config/makefile/unix_shr.in index 0962e1722..9e8d54eec 100644 --- a/misc/config/makefile/unix_shr.in +++ b/misc/config/makefile/unix_shr.in @@ -84,7 +84,9 @@ all: $(LIBRARIES) # Build Commands # ################################################## @{var:lib_build_cmds} + @{var:check_build_cmds} + ################################################## # Link Commands # ################################################## |