Skip to content

Commit

Permalink
meson: remove redundant spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
stsp committed May 9, 2024
1 parent 8e584c0 commit 3ec2d23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fdpp/kernel/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ GIT_DESCRIBE = run_command('git', 'describe', check: true).stdout().strip()
hdr = ['src', 'hdr', rel_inc]
incdir2 = include_directories(hdr)
sfiles = cpp.preprocess(['cdata.S', 'plt.S'],
output : '@[email protected]',
output: '@[email protected]',
include_directories: incdir2,
compile_args : [
compile_args: [
'-D__ASSEMBLER__',
'-DKERNEL_VERSION=' + meson.project_version() +
' [GIT: ' + GIT_DESCRIBE + ']',
Expand Down
3 changes: 2 additions & 1 deletion fdpp/loader/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ BVER = cpp.get_define('BPRM_VER',
FVER = AVER + '.' + BVER
TARGET = 'fdppkrnl.' + FVER
LIBLOADER = shared_library('fdldr', 'elf.c', 'loader.c',
dependencies: lelf, include_directories: incdir,
dependencies: lelf,
include_directories: incdir,
version: FVER,
c_args: [
'-DFDPPKRNLDIR=' + get_option('prefix') / get_option('datadir') / 'fdpp',
Expand Down

0 comments on commit 3ec2d23

Please sign in to comment.