mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Allow configuration files to be themselves configured and found in the
OBJ dir instead of only in the SRC dir. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18143 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
163393732a
commit
1b426abbbd
@ -432,7 +432,13 @@ ifdef CONFIG_FILES
|
||||
install-local:: $(sysconfdir) $(CONFIG_FILES)
|
||||
$(Echo) Installing Configuration Files To $(sysconfdir)
|
||||
$(Verb)for file in $(CONFIG_FILES); do \
|
||||
$(INSTALL) $(BUILD_SRC_DIR)/$${file} $(sysconfdir) ; \
|
||||
if test -f $(BUILD_OBJ_DIR)/$${file} ; then \
|
||||
$(INSTALL) $(BUILD_OBJ_DIR)/$${file} $(sysconfdir) ; \
|
||||
elif test -f $(BUILD_SRC_DIR)/$${file} ; then \
|
||||
$(INSTALL) $(BUILD_SRC_DIR)/$${file} $(sysconfdir) ; \
|
||||
else \
|
||||
$(ECHO) Error: cannot find config file $${file}. ; \
|
||||
fi \
|
||||
done
|
||||
|
||||
uninstall-local::
|
||||
|
Loading…
Reference in New Issue
Block a user