diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-03-05 17:43:28 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-03-05 17:43:28 +0000 |
commit | 91c0d6264ef2bde82c27c893bb962b1aa4e1546f (patch) | |
tree | 402dd156552fbf018bf09934277eb89be582e3fb | |
parent | 72d97a3979c4f035ea15061e5105cd4e1ebc801d (diff) | |
download | usdx-91c0d6264ef2bde82c27c893bb962b1aa4e1546f.tar.gz usdx-91c0d6264ef2bde82c27c893bb962b1aa4e1546f.tar.xz usdx-91c0d6264ef2bde82c27c893bb962b1aa4e1546f.zip |
the macosx icon file (ultrastardx.icns) must be in the folder resources
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1622 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 0a1113a4..ad94259d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -368,7 +368,8 @@ macosx-app: all # Put the icon file into its particular place. # Must be done BEFORE info.plist is created. - $(INSTALL_DATA) icons/ultrastardx.icns $(macosx_bundle_path)/ + $(MKDIR) $(macosx_bundle_path)/resources + $(INSTALL_DATA) icons/ultrastardx.icns $(macosx_bundle_path)/resources/ # the info.plist file $(INSTALL_DATA) $(USDX_SRC_DIR)/macosx/Info.plist $(macosx_bundle_path)/ |