Lame tweak in order to do a test build on non-glibc Linux systems.

git-svn-id: svn://10.0.0.236/trunk@23476 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
briano%netscape.com 1999-03-10 03:30:42 +00:00
parent 5450b79a19
commit f80ea81018
2 changed files with 10 additions and 0 deletions

View File

@ -124,6 +124,7 @@ sub SetupPath {
if ( $OS eq 'NetBSD' ) {
$ENV{'PATH'} = '/bin:/usr/bin:' . $ENV{'PATH'};
$ENV{'LD_LIBRARY_PATH'} .= ':/usr/X11R6/lib';
$ConfigureEnvArgs = 'CC=egcc CXX=eg++';
$Compiler = 'egcc';
$mail = '/usr/bin/mail';
@ -261,6 +262,10 @@ sub GetSystemInfo {
} else {
$ObjDir = 'obj-' . $CPU . '-pc-linux-gnu';
$BuildName = $host . ' ' . $OS . '/i386 ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber');
# What's the right way to test for this?
if ( $host eq 'truth' ) {
$ObjDir .= 'libc1';
}
}
}

View File

@ -124,6 +124,7 @@ sub SetupPath {
if ( $OS eq 'NetBSD' ) {
$ENV{'PATH'} = '/bin:/usr/bin:' . $ENV{'PATH'};
$ENV{'LD_LIBRARY_PATH'} .= ':/usr/X11R6/lib';
$ConfigureEnvArgs = 'CC=egcc CXX=eg++';
$Compiler = 'egcc';
$mail = '/usr/bin/mail';
@ -261,6 +262,10 @@ sub GetSystemInfo {
} else {
$ObjDir = 'obj-' . $CPU . '-pc-linux-gnu';
$BuildName = $host . ' ' . $OS . '/i386 ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber');
# What's the right way to test for this?
if ( $host eq 'truth' ) {
$ObjDir .= 'libc1';
}
}
}