Re-ordered and renamed some output from configAppInclude.

This commit is contained in:
Andrew Johnson
2001-09-13 20:54:42 +00:00
parent 2891f74d54
commit 365c82023f

View File

@@ -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;
}