diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-09-01 15:21:43 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-09-01 15:21:43 +0000 |
commit | 198730fb3d172ca30c6e43d21ee081a71eec7b79 (patch) | |
tree | 85aa4b27c875bdf66060f90b2e94ab5ff995996a /toolchain/glibc | |
parent | 8df0c8e3901b2c2d93b8f58855b84693064eaba4 (diff) | |
download | upstream-198730fb3d172ca30c6e43d21ee081a71eec7b79.tar.gz upstream-198730fb3d172ca30c6e43d21ee081a71eec7b79.tar.bz2 upstream-198730fb3d172ca30c6e43d21ee081a71eec7b79.zip |
fix a compile error when compiling with glibc (#7816)
SVN-Revision: 22869
Diffstat (limited to 'toolchain/glibc')
-rw-r--r-- | toolchain/glibc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/glibc/Makefile b/toolchain/glibc/Makefile index abd1c57077..789ae842d6 100644 --- a/toolchain/glibc/Makefile +++ b/toolchain/glibc/Makefile @@ -57,7 +57,7 @@ GLIBC_CONFIGURE:= \ libc_cv_386_tls=yes \ libc_cv_slibdir="/lib" \ $(HOST_BUILD_DIR)/configure \ - --prefix=/ \ + --prefix= \ --build=$(GNU_HOST_NAME) \ --host=$(REAL_GNU_TARGET_NAME) \ --with-headers="$(TOOLCHAIN_DIR)/include" \ |