don't set rpath because on musl it'll fall over with static binaries

This commit is contained in:
DubbleClick 2025-06-28 21:50:57 +07:00
parent 61274cb865
commit 4a493f3f6d

View File

@ -12,6 +12,8 @@ class libmemcached extends LinuxLibraryBase
public function build(): void
{
UnixCMakeExecutor::create($this)->build();
UnixCMakeExecutor::create($this)
->addConfigureArgs('-DCMAKE_INSTALL_RPATH=""')
->build();
}
}