Skip to content

Commit

Permalink
Fix private headers path
Browse files Browse the repository at this point in the history
  • Loading branch information
ehopperdietzel committed Nov 19, 2023
1 parent caff501 commit 6772370
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ headers_classes = run_command('find', './lib/core', '-type', 'f', '-name', '*.h'
headers_classes_private = run_command('find', './lib/core/private', '-type', 'f', '-name', '*.h', '-maxdepth', '1', check : false).stdout().strip().split('\n')
headers_other = run_command('find', './lib/other', '-type', 'f', '-name', '*.h', '-maxdepth', '1', check : false).stdout().strip().split('\n')
install_headers(headers_classes, install_dir : HEADERS_INSTALL_PATH)
install_headers(headers_classes_private, install_dir : join_paths(HEADERS_INSTALL_PATH, '/private'))
install_headers(headers_other, install_dir : join_paths(HEADERS_INSTALL_PATH, '/other'))
install_headers(headers_classes_private, install_dir : join_paths(HEADERS_INSTALL_PATH, 'private'))
install_headers(headers_other, install_dir : join_paths(HEADERS_INSTALL_PATH, 'other'))

globals = [
'LinuxDMABuf',
Expand Down

0 comments on commit 6772370

Please sign in to comment.