Browse Source

Resync the install defines
-Erik

Eric Andersen 22 years ago
parent
commit
64ead491bc

+ 12 - 5
extra/Configs/Config.alpha

@@ -176,7 +176,6 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -185,13 +184,21 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
-# usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
-# used by the 'make install' target, and is not compiled into anything.
-# This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
-# want to set this to "/" instead.
+# bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
+# the 'make install' target, and is not compiled into anything.  This
+# defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
+# want to set this to "/usr" instead.
 SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
 
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
+
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 9 - 2
extra/Configs/Config.arm

@@ -177,7 +177,6 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -190,9 +189,17 @@ DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 # the 'make install' target, and is not compiled into anything.  This
 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
 # want to set this to "/usr" instead.
-SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)/usr
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 14 - 6
extra/Configs/Config.cross.arm.uclinux

@@ -174,22 +174,30 @@ BUILD_UCLIBC_LDSO=false
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
 # directory is compiled into the uclibc cross compiler spoofer, you
 # have to recompile if you change this value...
+#DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 DEVEL_PREFIX = /opt/uClinux/$(TARGET_ARCH)-elf
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
-# usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
-# used by the 'make install' target, and is not compiled into anything.
-# This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
-# want to set this to "/" instead.
-SYSTEM_DEVEL_PREFIX = /
+# bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
+# the 'make install' target, and is not compiled into anything.  This
+# defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
+# want to set this to "/usr" instead.
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 16 - 9
extra/Configs/Config.h8300

@@ -168,30 +168,37 @@ BUILD_UCLIBC_LDSO=false
 # sitting in the directory this points to, your binaries will not run.
 #SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 
+# C defiend symbols prefix charactor
+C_SYMBOL_PREFIX = _
+
 # DEVEL_PREFIX is the directory into which the uClibc development
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
 # directory is compiled into the uclibc cross compiler spoofer, you
 # have to recompile if you change this value...
+#DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 DEVEL_PREFIX = /opt/uClinux/$(TARGET_ARCH)-coff
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
-# usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
-# used by the 'make install' target, and is not compiled into anything.
-# This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
-# want to set this to "/" instead.
-SYSTEM_DEVEL_PREFIX = /
+# bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
+# the 'make install' target, and is not compiled into anything.  This
+# defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
+# want to set this to "/usr" instead.
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
-PREFIX =
 
-# C defiend symbols prefix charactor
-C_SYMBOL_PREFIX = _

+ 9 - 2
extra/Configs/Config.i386

@@ -173,7 +173,6 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -186,9 +185,17 @@ DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 # the 'make install' target, and is not compiled into anything.  This
 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
 # want to set this to "/usr" instead.
-SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)/usr
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 16 - 11
extra/Configs/Config.i960

@@ -189,31 +189,36 @@ BUILD_UCLIBC_LDSO=false
 # sitting in the directory this points to, your binaries will not run.
 #SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 
+# C defiend symbols prefix charactor
+C_SYMBOL_PREFIX = _
+
 # DEVEL_PREFIX is the directory into which the uClibc development
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
 # directory is compiled into the uclibc cross compiler spoofer, you
 # have to recompile if you change this value...
-DEVEL_PREFIX = /usr/local/cross-compilers/i960-intel-coff
+DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
-# usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
-# used by the 'make install' target, and is not compiled into anything.
-# This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
-# want to set this to "/" instead.
-#SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
-SYSTEM_DEVEL_PREFIX = /tmp/uclibc-trashed
+# bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
+# the 'make install' target, and is not compiled into anything.  This
+# defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
+# want to set this to "/usr" instead.
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
 
-# C defiend symbols prefix charactor
-C_SYMBOL_PREFIX = _
-

+ 9 - 2
extra/Configs/Config.m68k

@@ -186,7 +186,6 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -199,9 +198,17 @@ DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 # the 'make install' target, and is not compiled into anything.  This
 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
 # want to set this to "/usr" instead.
-SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)/usr
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 14 - 6
extra/Configs/Config.m68k.coff

@@ -189,22 +189,30 @@ BUILD_UCLIBC_LDSO=false
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
 # directory is compiled into the uclibc cross compiler spoofer, you
 # have to recompile if you change this value...
+#DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 DEVEL_PREFIX = /opt/uClinux/$(TARGET_ARCH)-coff
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
-# usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
-# used by the 'make install' target, and is not compiled into anything.
-# This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
-# want to set this to "/" instead.
-SYSTEM_DEVEL_PREFIX = /
+# bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
+# the 'make install' target, and is not compiled into anything.  This
+# defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
+# want to set this to "/usr" instead.
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 11 - 4
extra/Configs/Config.mips

@@ -174,7 +174,6 @@ SHARED_LIB_LOADER_PATH = $(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -187,9 +186,17 @@ DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 # the 'make install' target, and is not compiled into anything.  This
 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
 # want to set this to "/usr" instead.
-SYSTEM_DEVEL_PREFIX = /usr
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
-# directory, then define PREFIX during the install step,
+# directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
-PREFIX = $(TOPDIR)/_install
+#PREFIX = $(TOPDIR)/_install
+

+ 11 - 4
extra/Configs/Config.mipsel

@@ -174,7 +174,6 @@ SHARED_LIB_LOADER_PATH = /lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -187,9 +186,17 @@ DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 # the 'make install' target, and is not compiled into anything.  This
 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
 # want to set this to "/usr" instead.
-SYSTEM_DEVEL_PREFIX = /usr
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
-# directory, then define PREFIX during the install step,
+# directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
-PREFIX = $(TOPDIR)/_install
+#PREFIX = $(TOPDIR)/_install
+

+ 12 - 5
extra/Configs/Config.powerpc

@@ -176,7 +176,6 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -185,13 +184,21 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
-# usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
-# used by the 'make install' target, and is not compiled into anything.
-# This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
-# want to set this to "/" instead.
+# bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
+# the 'make install' target, and is not compiled into anything.  This
+# defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
+# want to set this to "/usr" instead.
 SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
 
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
+
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 9 - 2
extra/Configs/Config.sh

@@ -193,7 +193,6 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -206,9 +205,17 @@ DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 # the 'make install' target, and is not compiled into anything.  This
 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
 # want to set this to "/usr" instead.
-SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)/usr
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 12 - 5
extra/Configs/Config.sparc

@@ -181,7 +181,6 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
@@ -190,13 +189,21 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
-# usr/bin/arch-uclibc-gcc, usr/bin/arch-uclibc-ld, etc.   This is only
-# used by the 'make install' target, and is not compiled into anything.
-# This defaults to $DEVEL_PREFIX, but makers of .rpms and .debs will
-# want to set this to "/" instead.
+# bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
+# the 'make install' target, and is not compiled into anything.  This
+# defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
+# want to set this to "/usr" instead.
 SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
 
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
+
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+

+ 10 - 3
extra/Configs/Config.v850e

@@ -175,22 +175,29 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib
 # environment will be installed.   The result will look something 
 # like the following:
 #   DEVEL_PREFIX/
-#	bin/            <contains gcc, ld, etc>
 #	lib/            <contains all runtime and static libs>
 #	include/        <Where all the header files go>
 # This value is used by the 'make install' Makefile target.  Since this
 # directory is compiled into the uclibc cross compiler spoofer, you
 # have to recompile if you change this value...
-DEVEL_PREFIX = $(DESTDIR)/$(TARGET_ARCH)-uclibc
+DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc
 
 # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing
 # bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc.   This is only used by
 # the 'make install' target, and is not compiled into anything.  This
 # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will
 # want to set this to "/usr" instead.
-SYSTEM_DEVEL_PREFIX = $(DESTDIR)
+SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)
+
+# DEVEL_TOOL_PREFIX is the directory prefix used when installing
+# bin/gcc, bin/ld, etc.   This is only used by the 'make install'
+# target, and is not compiled into anything.  This defaults to
+# $DEVEL_PREFIX/usr, but makers of .rpms and .debs may want to
+# set this to something else.
+DEVEL_TOOL_PREFIX = $(DEVEL_PREFIX)/usr
 
 # If you want 'make install' to install everything under a temporary
 # directory, the define PREFIX during the install step,
 # i.e., 'make PREFIX=/var/tmp/uClibc install'.
 #PREFIX = $(TOPDIR)/_install
+