From 0c8f444508036a93037a0699b57348bad7181e84 Mon Sep 17 00:00:00 2001 From: DubbleClick Date: Sun, 1 Oct 2023 22:58:07 +0200 Subject: [PATCH] move everything for libsnappy too --- src/SPC/builder/unix/library/snappy.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SPC/builder/unix/library/snappy.php b/src/SPC/builder/unix/library/snappy.php index 1738ef192..8f612e826 100644 --- a/src/SPC/builder/unix/library/snappy.php +++ b/src/SPC/builder/unix/library/snappy.php @@ -30,6 +30,7 @@ protected function build(): void ) ->exec("cmake --build . -j {$this->builder->concurrency}") ->exec('make install') - ->exec('mv ' . BUILD_ROOT_PATH . '/lib64/libsnappy.a ' . BUILD_ROOT_PATH . '/lib/libsnappy.a'); + ->exec('mv ' . BUILD_ROOT_PATH . '/lib64/pkgconfig/* ' . BUILD_ROOT_PATH . '/lib/pkgconfig/') + ->exec('mv ' . BUILD_ROOT_PATH . '/lib64/*.a ' . BUILD_ROOT_PATH . '/lib/'); } }