Changeset 740e952 in mainline for meson.build
- Timestamp:
- 2019-08-17T12:49:43Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b2695b9
- Parents:
- 71069a9
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-06-27 16:04:58)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-08-17 12:49:43)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
meson.build
r71069a9 r740e952 326 326 subdir('meson' / 'arch' / UARCH) 327 327 328 install_files = [] 329 install_deps = [] 330 328 331 subdir('kernel') 329 332 subdir('uspace') … … 393 396 394 397 install_data('Makefile.common', 'Makefile.config', install_dir: 'config') 398 399 400 # Emit and register the install script. 401 402 install_script_text = [] 403 404 foreach f : install_files 405 _cmd = 'mkdir -p "${MESON_INSTALL_DESTDIR_PREFIX}@0@" && cp -L -T "@1@" "${MESON_INSTALL_DESTDIR_PREFIX}@0@/@2@"' 406 install_script_text += _cmd.format(f[0], f[1], f[2]) 407 endforeach 408 409 install_script_text += uspace_lib_install_script_text 410 411 configure_file( 412 configuration: { 'text' : '\n'.join(install_script_text) }, 413 input: 'install.sh.in', 414 output: 'install.sh', 415 ) 416 417 meson.add_install_script(meson.current_build_dir() / 'install.sh')
Note:
See TracChangeset
for help on using the changeset viewer.