mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Fix installation of resources symlinks
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@39946 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
cc7b9b6224
commit
1a93e4efc4
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2015-06-29 Niels Grewe <niels.grewe@halbordnung.de>
|
||||
|
||||
* Instance/framework.make: Fix installation of Resources symlinks.
|
||||
|
||||
2016-06-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Documentation/releasenotes.texi:
|
||||
|
|
|
@ -391,6 +391,10 @@ build-framework-dirs: $(DERIVED_SOURCES_DIR) \
|
|||
$(UPDATE_CURRENT_SYMLINK_RULE)
|
||||
ifeq ($(FRAMEWORK_VERSION_SUPPORT), yes)
|
||||
$(ECHO_NOTHING)cd $(FRAMEWORK_DIR); \
|
||||
if [ ! -h "Resources" ]; then \
|
||||
$(RM_LN_S) Resources; \
|
||||
$(LN_S_RECURSIVE) Versions/Current/Resources Resources; \
|
||||
fi; \
|
||||
if [ ! -h "Headers" ]; then \
|
||||
$(RM_LN_S) Headers; \
|
||||
$(LN_S_RECURSIVE) Versions/Current/Headers Headers; \
|
||||
|
|
Loading…
Reference in a new issue