mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
fix(openjdk) (#5867)
* fix(openjdk) * might as well link all of them --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
This commit is contained in:
parent
dcf01d26be
commit
b5cc3debc8
1 changed files with 8 additions and 0 deletions
|
@ -90,6 +90,14 @@ build:
|
||||||
- make images $MAKE_ARGS
|
- make images $MAKE_ARGS
|
||||||
- mkdir -p {{prefix}}
|
- mkdir -p {{prefix}}
|
||||||
- mv $JDK_DIR {{prefix}}/
|
- mv $JDK_DIR {{prefix}}/
|
||||||
|
- run: |
|
||||||
|
# jni.h:45:10: fatal error: 'jni_md.h' file not found
|
||||||
|
if test -d {{ hw.platform }}; then
|
||||||
|
mv {{ hw.platform }}/* .
|
||||||
|
rmdir {{ hw.platform }}
|
||||||
|
ln -s . {{ hw.platform }}
|
||||||
|
fi
|
||||||
|
working-directory: ${{prefix}}/include
|
||||||
env:
|
env:
|
||||||
MAKE_ARGS: 'JOBS={{ hw.concurrency }}'
|
MAKE_ARGS: 'JOBS={{ hw.concurrency }}'
|
||||||
darwin:
|
darwin:
|
||||||
|
|
Loading…
Reference in a new issue