summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-10 00:36:24 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-10 00:36:24 +0000
commit22358dd7ce7bb49792204b698f01a6f69b9c8e08 (patch)
tree7cd9b00742d44db5841ff187804e1fedaedc949b /libcrypt
parent758899d3fb7486d5d237968813da1d2bc2ed375a (diff)
Don't hard code path to TARGET_CC
Diffstat (limited to 'libcrypt')
-rw-r--r--libcrypt/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrypt/Makefile b/libcrypt/Makefile
index 15d8ad534..f4280a4e7 100644
--- a/libcrypt/Makefile
+++ b/libcrypt/Makefile
@@ -25,7 +25,7 @@ include $(TOPDIR)Rules.mak
LIBCRYPT=libcrypt.a
LIBCRYPT_SHARED=libcrypt.so
-TARGET_CC= ../extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
+TARGET_CC= $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
CSRC = crypt.c des.c md5.c
COBJS=$(patsubst %.c,%.o, $(CSRC))