]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Fixed s/TARGET/OBJECT/g.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 15 Nov 2008 22:28:44 +0000 (23:28 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 15 Nov 2008 22:28:44 +0000 (23:28 +0100)
lfs/Config
lfs/binutils
lfs/gcc
lfs/glibc

index 07df3de67e7cc873213e215db4bcc3727d430873..61299f35958245722ba8c4307ff1d8de588d1933 100644 (file)
@@ -86,7 +86,7 @@ INSTALL_INITSCRIPT = echo "Installing initscript \"$(INITSCRIPT)\" -> /etc/init.
 PYTHON_COMPILE = find /usr/lib/python*/ -name *.py | xargs /usr/bin/py-compile
 
 # For each package we create a list of files that it installed under 
-# log/<TARGET> name. Modified files are not identified
+# log/<OBJECT> name. Modified files are not identified
 #
 define FIND_FILES
        cd $(LFS)/ && $(TOOLS_DIR)/bin/find -mount \
index 59ee69bd025f466c0576e527952983b19c198634..a00025f8463f46b3858a2d2f0e43857132a5eb7e 100644 (file)
@@ -33,9 +33,9 @@ DL_FILE    = $(THISAPP).tar.bz2
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 
 ifeq "$(STAGE)" "toolchain"
-       TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)-pass$(PASS)
+       OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)-pass$(PASS)
 else
-       TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
+       OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
 endif
 
 MAINTAINER =
diff --git a/lfs/gcc b/lfs/gcc
index be8e2753fe56b3f701f5fda914369a56611c3691..e0c5b25ee53a944585ae63c872ee326eec6f55d4 100644 (file)
--- a/lfs/gcc
+++ b/lfs/gcc
@@ -37,9 +37,9 @@ GMP        = $(shell grep ^VER $(DIR_LFS)/gmp  | awk '{ print $$3 }')
 MPFR       = $(shell grep ^VER $(DIR_LFS)/mpfr | awk '{ print $$3 }')
 
 ifeq "$(STAGE)" "base"
-       TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
+       OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
 else
-       TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)-pass$(PASS)
+       OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)-pass$(PASS)
 endif
 
 ifeq "$(MACHINE)" "i586"
index c0d83241c61174e3d08349a4e0b136f1940521ef..59a76b43ba9c6ff151f16cfce1fd70207c981511 100644 (file)
--- a/lfs/glibc
+++ b/lfs/glibc
@@ -36,7 +36,7 @@ CXXFLAGS   =
 
 
 ifeq "$(firstword $(MAKEFILE_LIST))" "$(PKG_NAME)"
-       TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
+       OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
        CONFIGURE_ARGS = --prefix=/usr \
                --disable-profile \
                --enable-add-ons \
@@ -49,7 +49,7 @@ ifeq "$(SSP)" "1"
                --with-prng-device=/dev/erandom
 endif
 else
-       TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)-cross
+       OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)-cross
 endif
 
 ###############################################################################