diff options
Diffstat (limited to 'extra/Configs/Config.mips')
-rw-r--r-- | extra/Configs/Config.mips | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/extra/Configs/Config.mips b/extra/Configs/Config.mips index d2868bead..8b3b1b247 100644 --- a/extra/Configs/Config.mips +++ b/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 + |