Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2388: Fix `make install` when *.hh is empty. r=Hywan a=FGasper

Issue wasmerio#2387

<!-- 
Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test:
https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests

-->

# Description
<!-- 
Provide details regarding the change including motivation,
links to related issues, and the context of the PR.
-->

# Review

- [ ] Add a short description of the change to the CHANGELOG.md file


Co-authored-by: Felipe Gasper <[email protected]>
  • Loading branch information
bors[bot] and Felipe Gasper authored Jun 8, 2021
2 parents fb277cc + 1ce81df commit 4d800ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ install-wasmer:
install -Dm755 target/release/wasmer $(DESTDIR)/bin/wasmer

install-capi-headers:
for header in lib/c-api/*.{h,hh}; do install -Dm644 "$$header" $(DESTDIR)/include/$$(basename $$header); done
for header in lib/c-api/*.h; do install -Dm644 "$$header" $(DESTDIR)/include/$$(basename $$header); done
install -Dm644 lib/c-api/README.md $(DESTDIR)/include/wasmer-README.md

# Currently implemented for linux only. TODO
Expand Down

0 comments on commit 4d800ec

Please sign in to comment.