Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #910 from tom-tan/fix-install-dir-on-osx
Browse files Browse the repository at this point in the history
Fix install directory on Mac OS X
  • Loading branch information
braddr committed Jul 24, 2014
2 parents 452fc6e + d5b5129 commit 8664d5a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions posix.mak
Expand Up @@ -247,8 +247,9 @@ druntime.zip: $(MANIFEST) $(IMPORTS)
install: target
mkdir -p $(INSTALL_DIR)/src/druntime/import
cp -r import/* $(INSTALL_DIR)/src/druntime/import/
mkdir -p $(INSTALL_DIR)/$(OS)/lib$(MODEL)
cp -r lib/* $(INSTALL_DIR)/$(OS)/lib$(MODEL)/
$(eval lib_dir=$(if $(filter $(OS),osx), lib, lib$(MODEL)))
mkdir -p $(INSTALL_DIR)/$(OS)/$(lib_dir)
cp -r lib/* $(INSTALL_DIR)/$(OS)/$(lib_dir)/
cp LICENSE $(INSTALL_DIR)/druntime-LICENSE.txt

clean: $(addsuffix /.clean,$(ADDITIONAL_TESTS))
Expand Down

0 comments on commit 8664d5a

Please sign in to comment.