Skip to content

Commit eba92e9

Browse files
build: fixed output library file name
1 parent 2f5dba3 commit eba92e9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ lua_flags = [
8282
]
8383

8484
if get_option('library_type') == 'static'
85-
liblua = static_library('liblua',
85+
liblua = static_library('lua',
8686
c_args: [lua_warns, lua_flags],
8787
dependencies: [m_dep],
8888
sources: [luacore_src, liblua_src, luaaux_src],
8989
include_directories: lua_inc,
9090
install: true)
9191
else
92-
liblua = shared_library('liblua',
92+
liblua = shared_library('lua',
9393
c_args: [lua_warns, lua_flags],
9494
dependencies: [m_dep],
9595
sources: [luacore_src, liblua_src, luaaux_src],

0 commit comments

Comments
 (0)