From 365c82023fedae1c144730cca7e5f35a4ce32b22 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 13 Sep 2001 20:54:42 +0000 Subject: [PATCH] Re-ordered and renamed some output from configAppInclude. --- configure/tools/convertRelease.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure/tools/convertRelease.pl b/configure/tools/convertRelease.pl index df89e87e7..5e3db2fd0 100755 --- a/configure/tools/convertRelease.pl +++ b/configure/tools/convertRelease.pl @@ -124,12 +124,12 @@ sub configAppInclude { } while (($app, $path) = each %apps) { next unless (-d "$path/include"); - print OUT "INSTALL_INCLUDES += -I\$($app)/include\n"; - print OUT "INSTALL_INCLUDES += -I\$($app)/include/os/\$(OS_CLASS)\n"; + print OUT "RELEASE_INCLUDES += -I\$($app)/include/os/\$(OS_CLASS)\n"; + print OUT "RELEASE_INCLUDES += -I\$($app)/include\n"; } while (($app, $path) = each %apps) { next unless (-d "$path/dbd"); - print OUT "INSTALL_DBDFLAGS += -I \$($app)/dbd\n"; + print OUT "RELEASE_DBDFLAGS += -I \$($app)/dbd\n"; } close OUT; }