]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Corrected the right installation of the kernel header files.
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 5 May 2008 17:10:23 +0000 (19:10 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 5 May 2008 17:10:23 +0000 (19:10 +0200)
This is because the x86_64 and i386 tree were put together in
linux 2.6.25.

lfs/linux

index 4a94e6a0333b690c3e9f2db9beeaa4bddcd4c076..0fb3e55b0d0827dc9ffc4e88baa3cfcacd60b014 100644 (file)
--- a/lfs/linux
+++ b/lfs/linux
@@ -77,15 +77,15 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 ifeq "$(STAGE)" "toolchain"
        install -dv $(TOOLS_DIR)/include
        cd $(DIR_APP) && make mrproper
-       cd $(DIR_APP) && make ARCH=i386 headers_check
-       cd $(DIR_APP) && make ARCH=i386 INSTALL_HDR_PATH=dest headers_install
+       cd $(DIR_APP) && make ARCH=x86 headers_check
+       cd $(DIR_APP) && make ARCH=x86 INSTALL_HDR_PATH=dest headers_install
        cd $(DIR_APP) && cp -rv dest/include/* $(TOOLS_DIR)/include
 endif
 
 ifeq "$(STAGE)" "base"
        cd $(DIR_APP) && make mrproper
-       cd $(DIR_APP) && make ARCH=i386 headers_check
-       cd $(DIR_APP) && make ARCH=i386 INSTALL_HDR_PATH=dest headers_install
+       cd $(DIR_APP) && make ARCH=x86 headers_check
+       cd $(DIR_APP) && make ARCH=x86 INSTALL_HDR_PATH=dest headers_install
        cd $(DIR_APP) && cp -rv dest/include/* /usr/include
 endif
 
@@ -145,8 +145,8 @@ endif
 
 ifeq "$(STAGE)" "uclibc"
        cd $(DIR_APP) && make mrproper
-       cd $(DIR_APP) && make ARCH=i386 headers_check
-       cd $(DIR_APP) && make ARCH=i386 INSTALL_HDR_PATH=dest headers_install
+       cd $(DIR_APP) && make ARCH=x86 headers_check
+       cd $(DIR_APP) && make ARCH=x86 INSTALL_HDR_PATH=dest headers_install
        cd $(DIR_APP) && cp -rv dest/include/* $(UCLIBC_DIR)/include
 endif