rpm: Keep debug symbols if configured with '--enable-debuginfo'
Do not strip debug information from packages if '--enable-debuginfo' is configured. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Umer Saleem <usaleem@ixsystems.com> Closes #13500
This commit is contained in:
parent
fde66e583d
commit
0a688b2345
|
@ -323,6 +323,10 @@ AC_DEFUN([ZFS_AC_RPM], [
|
||||||
RPM_DEFINE_COMMON=${RPM_DEFINE_COMMON}' --define "$(DEBUG_KMEM_TRACKING_ZFS) 1"'
|
RPM_DEFINE_COMMON=${RPM_DEFINE_COMMON}' --define "$(DEBUG_KMEM_TRACKING_ZFS) 1"'
|
||||||
RPM_DEFINE_COMMON=${RPM_DEFINE_COMMON}' --define "$(ASAN_ZFS) 1"'
|
RPM_DEFINE_COMMON=${RPM_DEFINE_COMMON}' --define "$(ASAN_ZFS) 1"'
|
||||||
|
|
||||||
|
AS_IF([test "x$enable_debuginfo" = xyes], [
|
||||||
|
RPM_DEFINE_COMMON=${RPM_DEFINE_COMMON}' --define "__strip /bin/true"'
|
||||||
|
])
|
||||||
|
|
||||||
RPM_DEFINE_UTIL=' --define "_initconfdir $(initconfdir)"'
|
RPM_DEFINE_UTIL=' --define "_initconfdir $(initconfdir)"'
|
||||||
|
|
||||||
dnl # Make the next three RPM_DEFINE_UTIL additions conditional, since
|
dnl # Make the next three RPM_DEFINE_UTIL additions conditional, since
|
||||||
|
|
Loading…
Reference in New Issue