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 /libutil/Makefile | |
parent | 758899d3fb7486d5d237968813da1d2bc2ed375a (diff) | |
download | uClibc-alpine-22358dd7ce7bb49792204b698f01a6f69b9c8e08.tar.bz2 uClibc-alpine-22358dd7ce7bb49792204b698f01a6f69b9c8e08.tar.xz |
Don't hard code path to TARGET_CC
Diffstat (limited to 'libutil/Makefile')
-rw-r--r-- | libutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libutil/Makefile b/libutil/Makefile index b5a458c30..364e82538 100644 --- a/libutil/Makefile +++ b/libutil/Makefile @@ -26,7 +26,7 @@ LIBC=$(TOPDIR)libc.a LIBUTIL=libutil.a LIBUTIL_SHARED=libutil.so -TARGET_CC= ../extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc +TARGET_CC= $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc CSRC=forkpty.c login.c login_tty.c logout.c logwtmp.c openpty.c COBJS=$(patsubst %.c,%.o, $(CSRC)) |