Skip to content

Commit

Permalink
Merge pull request apache#12 from intel-innersource/query-206
Browse files Browse the repository at this point in the history
cleanup temporary files in header generation
  • Loading branch information
asvyatet authored Mar 20, 2022
2 parents 424c487 + 0790420 commit f18dcc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ endif()

add_custom_command(
OUTPUT ${JNI_HEADER}
COMMAND javac -h ${JNI_HEADER_DIR} -d /tmp ${JNI_SOURCE}
COMMAND mkdir -p /tmp/header_gen && javac -h ${JNI_HEADER_DIR} -d /tmp/header_gen ${JNI_SOURCE} && rm -rf /tmp/header_gen
DEPENDS ${JNI_SOURCE}
)

Expand Down

0 comments on commit f18dcc5

Please sign in to comment.