Skip to content

Commit

Permalink
Fix make install for SPM build
Browse files Browse the repository at this point in the history
Fixes #149
  • Loading branch information
jerrymarino committed Feb 5, 2019
1 parent 7766d47 commit 1994d9d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,11 @@ clean:
# Create an archive package with a release binary and all bundle resources
# Note, that this does not self update.
archive: CONFIG = release
archive: build-release aspects
archive: aspects build-release
rm -rf tmp_build_dir
mkdir -p tmp_build_dir/$(PRODUCT)
ditto .build/$(CONFIG)/$(PRODUCT) tmp_build_dir/$(PRODUCT)/
./export_tulsi_aspect_dir.sh ${PWD}/$(ASPECTDIR)
# Copy bundle resources
@# Copy bundle resources
ditto $(ASPECTDIR) tmp_build_dir/$(PRODUCT)/
ditto .build/$(CONFIG)/$(ASSETDIR) tmp_build_dir/$(PRODUCT)/$(ASSETDIR)

Expand Down

0 comments on commit 1994d9d

Please sign in to comment.