diff options
author | S. Davilla <davilla@4pi.com> | 2013-10-31 20:29:54 -0400 |
---|---|---|
committer | S. Davilla <davilla@4pi.com> | 2013-10-31 20:38:24 -0400 |
commit | 3c9781e45fa5b2e64fa93bae9ff7cd98f19d43bf (patch) | |
tree | beb77d89f45e70ddb02c386f4a84cbd548c09a9f /tools/depends | |
parent | b8662600eed9b0ad19c3b2098db09899e50e4988 (diff) |
depends: fix anoying symlink failure if symlink already exists
Diffstat (limited to 'tools/depends')
-rw-r--r-- | tools/depends/native/pkg-config-native/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/depends/native/pkg-config-native/Makefile b/tools/depends/native/pkg-config-native/Makefile index 4ea10782c1..d866d0164e 100644 --- a/tools/depends/native/pkg-config-native/Makefile +++ b/tools/depends/native/pkg-config-native/Makefile @@ -30,6 +30,7 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) -rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM) cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(PLATFORM); $(CONFIGURE) + cd $(PLATFORM); sed -ie "s|LN = ln|LN = ln -f|" Makefile $(LIBDYLIB): $(PLATFORM) $(MAKE) -C $(PLATFORM) |