Skip to content

Commit 262ca63

Browse files
committed
Don't depend on -D flag for install
1 parent e8fea41 commit 262ca63

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

recipes/woff2/recipe.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ build:
1919
- cmake --build build
2020
- cmake --install build
2121
# Manually install binaries not handled by cmake --install
22-
- install -Dm755 build/woff2_info "${{ PREFIX }}/bin/woff2_info"
23-
- install -Dm755 build/woff2_decompress "${{ PREFIX }}/bin/woff2_decompress"
24-
- install -Dm755 build/woff2_compress "${{ PREFIX }}/bin/woff2_compress"
22+
- mkdir -p "${{ PREFIX }}/bin"
23+
- install -m755 build/woff2_info "${{ PREFIX }}/bin/woff2_info"
24+
- install -m755 build/woff2_decompress "${{ PREFIX }}/bin/woff2_decompress"
25+
- install -m755 build/woff2_compress "${{ PREFIX }}/bin/woff2_compress"
2526
requirements:
2627
build:
2728
- ${{ compiler('c') }}

0 commit comments

Comments
 (0)