Skip to content

Commit

Permalink
Merge pull request #3530 from WalterBright/fix14881
Browse files Browse the repository at this point in the history
fix Issue 14881 - [REG] posix.mak omits package.d files when building…
  • Loading branch information
MartinNowak committed Aug 7, 2015
2 parents 950c551 + d58908a commit d222e42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion posix.mak
Expand Up @@ -374,7 +374,8 @@ clean :
rm -rf $(ROOT_OF_THEM_ALL) $(ZIPFILE) $(DOC_OUTPUT_DIR)

zip :
zip $(ZIPFILE) $(MAKEFILE) $(ALL_D_FILES) $(ALL_C_FILES) index.d win32.mak win64.mak osmodel.mak
zip $(ZIPFILE) $(MAKEFILE) $(ALL_D_FILES) $(ALL_C_FILES) index.d win32.mak win64.mak osmodel.mak \
$(addsuffix /package.d,$(STD_PACKAGES))

install2 : all
$(eval lib_dir=$(if $(filter $(OS),osx), lib, lib$(MODEL)))
Expand Down

0 comments on commit d222e42

Please sign in to comment.