summaryrefslogtreecommitdiffstats
path: root/rules/klibc.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2006-12-19 15:01:24 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2006-12-19 15:01:24 +0000
commit5c2cc3793c654bcfe90bfa7c985bdc5cc5869478 (patch)
treeacd6bed45a203105bd32ce09623a172c13b16573 /rules/klibc.make
parentefa79ad5a12273c5c72162d1f3bef532ff0e6e1a (diff)
downloadptxdist-5c2cc3793c654bcfe90bfa7c985bdc5cc5869478.tar.gz
ptxdist-5c2cc3793c654bcfe90bfa7c985bdc5cc5869478.tar.xz
* klibc.make:
PREFIX -> CROSS_PREFIX git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@6549 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/klibc.make')
-rw-r--r--rules/klibc.make6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules/klibc.make b/rules/klibc.make
index bb8ad8890..60c6e99bd 100644
--- a/rules/klibc.make
+++ b/rules/klibc.make
@@ -94,7 +94,7 @@ $(STATEDIR)/klibc.compile: $(klibc_compile_deps_default) $(STATEDIR)/kernel.prep
# this won't generate any files here for the target. All selected files will
# later be part of the kernel image itself (initramfs). Instead only a control
# file will be generated and all parts of the klibc get installed into
-# $(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)/usr/lib/klibc.
+# $(SYSROOT)/usr/lib/klibc.
# To link applications against klibc, use the "klcc" wrapper instead of the
# cross compiler. klcc will be build here and uses the $(COMPILER_PREFIX).
# While kernel building the klibc files will be fetched from their build location!
@@ -216,7 +216,7 @@ endif
#
# install the compiler wrapper to be used to link programs against klibc
#
- install $(KLIBC_DIR)/klcc/klcc $(PTXCONF_PREFIX)/bin/klcc
+ install $(KLIBC_DIR)/klcc/klcc $(PTXCONF_CROSS_PREFIX)/bin/klcc
#
# install a few commands to the local architecture directory
# but important is the klibc.a only to link programs against it
@@ -248,6 +248,6 @@ klibc_clean:
rm -rf $(STATEDIR)/klibc.*
rm -rf $(IMAGEDIR)/klibc_*
rm -rf $(KLIBC_DIR)
- rm -rf $(PTXCONF_PREFIX)/bin/klcc
+ rm -rf $(PTXCONF_CROSS_PREFIX)/bin/klcc
# vim: syntax=make