From 09d50b32137cf10f49d9a4c938af45241d3f25b7 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 30 Jul 2003 21:35:30 +0000 Subject: [PATCH] Export RELEASE entries in environment for tools (MSI in particular) --- configure/tools/convertRelease.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure/tools/convertRelease.pl b/configure/tools/convertRelease.pl index 7b3638d0b..ff2b697cb 100755 --- a/configure/tools/convertRelease.pl +++ b/configure/tools/convertRelease.pl @@ -160,6 +160,10 @@ sub configAppInclude { print OUT "# be lost when the application is next rebuilt.\n\n"; if ($arch) { + print OUT "export TOP\n"; + foreach $app (@includes) { + print OUT "export ${app}\n"; + } foreach $app (@includes) { $path = $macros{$app}; next unless (-d "$path/bin/$hostarch");