mirror of https://github.com/OpenTTD/OpenTTD
(svn r15089) -Fix: make install not installing the AI directory and thus the AI libraries were missing in the debian builds.
parent
1ee0c4caf4
commit
606ef3c179
|
@ -155,6 +155,7 @@ install: bundle
|
|||
$(Q)install -d "$(INSTALL_DATA_DIR)/data"
|
||||
$(Q)install -d "$(INSTALL_DATA_DIR)/lang"
|
||||
$(Q)install -d "$(INSTALL_DATA_DIR)/scripts"
|
||||
$(Q)for i in `find "$(BUNDLE_DIR)/ai" -type d -not -iregex '.*/\.svn.*' | sed "s~$(BUNDLE_DIR)~$(INSTALL_DATA_DIR)~"`; do install -d "$$i"; done
|
||||
$(Q)install -d "$(INSTALL_DOC_DIR)"
|
||||
ifeq ($(TTD), openttd.exe)
|
||||
$(Q)install -m 755 "$(BUNDLE_DIR)/$(TTD)" "$(INSTALL_BINARY_DIR)/${BINARY_NAME}.exe"
|
||||
|
@ -168,6 +169,7 @@ endif
|
|||
$(Q)install -m 644 "$(BUNDLE_DIR)/"*.txt "$(INSTALL_DOC_DIR)"
|
||||
$(Q)install -m 644 "$(BUNDLE_DIR)/COPYING" "$(INSTALL_DOC_DIR)"
|
||||
$(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.32.xpm" "$(INSTALL_ICON_DIR)/${BINARY_NAME}.32.xpm"
|
||||
$(Q)for i in `find "$(BUNDLE_DIR)/ai" -type d -not -iregex '.*/\.svn.*'`; do if [ -n "`ls "$$i/"*.* 2>/dev/null`" ]; then install -m 664 "$$i/"*.* "`echo $$i | sed "s~$(BUNDLE_DIR)~$(INSTALL_DATA_DIR)~"`"; fi; done
|
||||
ifdef ICON_THEME_DIR
|
||||
$(Q)install -d "$(INSTALL_ICON_THEME_DIR)"
|
||||
$(Q)install -d "$(INSTALL_ICON_THEME_DIR)/16x16/apps"
|
||||
|
|
Loading…
Reference in New Issue