diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-10 00:36:24 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-10 00:36:24 +0000 |
commit | 22358dd7ce7bb49792204b698f01a6f69b9c8e08 (patch) | |
tree | 7cd9b00742d44db5841ff187804e1fedaedc949b /libcrypt/Makefile | |
parent | 758899d3fb7486d5d237968813da1d2bc2ed375a (diff) |
Don't hard code path to TARGET_CC
Diffstat (limited to 'libcrypt/Makefile')
-rw-r--r-- | libcrypt/Makefile | 2 |
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)) |