mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-03 00:09:16 +08:00
13 lines
741 B
Diff
13 lines
741 B
Diff
--- a/hack/make.sh
|
|
+++ b/hack/make.sh
|
|
@@ -98,7 +98,7 @@ fi
|
|
# functionality. We favour libdm_dlsym_deferred_remove over
|
|
# libdm_no_deferred_remove in dynamic cases because the binary could be shipped
|
|
# with a newer libdevmapper than the one it was built with.
|
|
-if command -v gcc &> /dev/null && ! (echo -e '#include <libdevmapper.h>\nint main() { dm_task_deferred_remove(NULL); }' | gcc -xc - -o /dev/null $(${PKG_CONFIG} --libs devmapper 2> /dev/null) &> /dev/null); then
|
|
+if command -v gcc &> /dev/null && ! (echo -e '#include <libdevmapper.h>\nint main() { dm_task_deferred_remove(NULL); }' | gcc -xc - -o /dev/null $(${PKG_CONFIG} --libs libdevmapper 2> /dev/null) &> /dev/null); then
|
|
add_buildtag libdm dlsym_deferred_remove
|
|
fi
|
|
|
|
|