diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-09-08 10:32:53 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-09-08 10:32:53 +0000 |
commit | a1d03e8c790552715ee0d590907f84406b9ae1f5 (patch) | |
tree | fb4dd8654419627d59a286b77d2f09aa840354c3 /kconfig/kconfig.mk | |
parent | 011e23d0943aae72d5a9f9c109055e45d10362c8 (diff) | |
download | crosstool-ng-a1d03e8c790552715ee0d590907f84406b9ae1f5.tar.gz crosstool-ng-a1d03e8c790552715ee0d590907f84406b9ae1f5.tar.bz2 crosstool-ng-a1d03e8c790552715ee0d590907f84406b9ae1f5.zip |
In a directory previously used as CT_TOP_DIR, when using a new version, ct-ng will fail to create the symlink to the new config files.
Fix that by forcing creation of the symlink, even if it already exists and points to a previous location.
Diffstat (limited to 'kconfig/kconfig.mk')
-rw-r--r-- | kconfig/kconfig.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfig/kconfig.mk b/kconfig/kconfig.mk index 95222644..cf6868d7 100644 --- a/kconfig/kconfig.mk +++ b/kconfig/kconfig.mk @@ -54,7 +54,7 @@ $(CT_TOP_DIR)/config.gen/tools.in:: $(TOOLS_CONFIG_FILES) config menuconfig oldconfig defoldconfig extractconfig:: $(KCONFIG_TOP) $(KCONFIG_TOP): - @ln -s $(CT_LIB_DIR)/config config + @ln -sf $(CT_LIB_DIR)/config config menuconfig:: $(obj)/mconf $(CONFIG_FILES) @$< $(KCONFIG_TOP) |