From a3311933f3fbdca7779b1ce478105eb095bdb02e Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 20 Mar 2001 13:03:20 +0000 Subject: have pcmcia_probe in stage2 (for non pcmcia.img, stage1 doesn't give the parameter any more) --- perl-install/c/Makefile.PL | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'perl-install/c/Makefile.PL') diff --git a/perl-install/c/Makefile.PL b/perl-install/c/Makefile.PL index 080a755e0..5739da12c 100644 --- a/perl-install/c/Makefile.PL +++ b/perl-install/c/Makefile.PL @@ -6,13 +6,15 @@ my $libs = '-lldetect'; $libs .= ' -L/usr/X11R6/lib -lX11 -lgdk -lXxf86misc' if $ENV{C_DRAKX}; $libs .= ' -lrpm -lrpmio -lz' if $ENV{C_RPM}; +my $pcmcia_dir = '../../mdk-stage1/pcmcia'; + WriteMakefile( 'NAME' => 'stuff', 'OPTIMIZE' => '-Os', 'MAKEFILE' => 'Makefile_c', - 'OBJECT' => 'stuff.o smp.o sbus.o silo.o', + 'OBJECT' => "stuff.o smp.o sbus.o silo.o $pcmcia_dir/pcmcia_probe.o", 'VERSION_FROM' => 'stuff.pm', # finds $VERSION 'LIBS' => [$libs], # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' - 'INC' => '-I/usr/include/rpm `gtk-config --cflags` `glib-config --cflags`', # e.g., '-I/usr/include/other' + 'INC' => "-I/usr/include/rpm -I$pcmcia_dir `gtk-config --cflags` `glib-config --cflags`", # e.g., '-I/usr/include/other' ); -- cgit v1.2.1