diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-11-04 08:54:50 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-11-04 08:54:50 +0000 |
commit | 6d6645ce7e44fecd5243f84e321d2c8dd9531f78 (patch) | |
tree | b70757a2da0b9c1f52197f0722004f48b4308274 | |
parent | b1b7648e3e9bf3d00b1f0ba9abebff1350dd1d8d (diff) | |
download | drakx-6d6645ce7e44fecd5243f84e321d2c8dd9531f78.tar drakx-6d6645ce7e44fecd5243f84e321d2c8dd9531f78.tar.gz drakx-6d6645ce7e44fecd5243f84e321d2c8dd9531f78.tar.bz2 drakx-6d6645ce7e44fecd5243f84e321d2c8dd9531f78.tar.xz drakx-6d6645ce7e44fecd5243f84e321d2c8dd9531f78.zip |
Build PCMCIA stuff on AMD64 too
-rw-r--r-- | mdk-stage1/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mdk-stage1/Makefile b/mdk-stage1/Makefile index 60fcf0830..9551a3dcb 100644 --- a/mdk-stage1/Makefile +++ b/mdk-stage1/Makefile @@ -183,6 +183,9 @@ DIRS += mar pci-resource usb-resource bzlib $(INSMOD) slang newt ppp/pppd rp-ppp ifeq (i386, $(ARCH)) DIRS += pcmcia_ endif +ifeq (x86_64, $(ARCH)) +DIRS += pcmcia_ +endif ifeq (i386,$(ARCH)) @@ -190,6 +193,11 @@ PCMCIA_LIB = pcmcia_/libpcmcia.a PCMCIA_DEFS = -DENABLE_PCMCIA endif +ifeq (x86_64,$(ARCH)) +PCMCIA_LIB = pcmcia_/libpcmcia.a +PCMCIA_DEFS = -DENABLE_PCMCIA +endif + USB_DEFS_GEN = -DENABLE_USB USB_DEFS = -DENABLE_USB -DDISABLE_PCIADAPTERS |