From: Eric Andersen Date: Thu, 29 Jul 2004 23:45:17 +0000 (-0000) Subject: Use relative links X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0f5897ff674b499f4e3cd3f419668630b602fdbf;p=buildroot.git Use relative links --- diff --git a/make/ccache.mk b/make/ccache.mk index e664a3a3ef..f495be9547 100644 --- a/make/ccache.mk +++ b/make/ccache.mk @@ -130,10 +130,10 @@ $(TARGET_DIR)/$(CCACHE_TARGET_BINARY): $(CCACHE_DIR2)/$(CCACHE_BINARY) # in the default PATH than /usr/bin where gcc lives (cd $(TARGET_DIR)/usr/bin; ln -fs gcc cc) (cd $(TARGET_DIR)/bin; \ - ln -fs /usr/bin/ccache cc; \ - ln -fs /usr/bin/ccache gcc; \ - ln -fs /usr/bin/ccache c++; \ - ln -fs /usr/bin/ccache g++;) + ln -fs ../usr/bin/ccache cc; \ + ln -fs ../usr/bin/ccache gcc; \ + ln -fs ../usr/bin/ccache c++; \ + ln -fs ../usr/bin/ccache g++;) ccache_target: uclibc $(TARGET_DIR)/$(CCACHE_TARGET_BINARY)