mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-15 20:50:30 +03:00
ebbbe01e31
For #13083, curiously, it did not print the actual error, just that the compile failed with "Error 1". In theory, this flag should cause it to report errors twice sometimes. In practice, I'm pretty okay with reporting some twice if it avoids reporting some never. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Damian Szuberski <szuberskidamian@gmail.com> Signed-off-by: Rich Ercolani <rincebrain@gmail.com> Closes #13086
31 lines
468 B
Makefile
31 lines
468 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
DEFAULT_INCLUDES += -I$(srcdir)
|
|
|
|
# See https://debbugs.gnu.org/cgi/bugreport.cgi?bug=54020
|
|
AM_CFLAGS += -no-suppress
|
|
|
|
noinst_LTLIBRARIES = libshare.la
|
|
|
|
USER_C = \
|
|
libshare_impl.h \
|
|
libshare.c \
|
|
nfs.h \
|
|
smb.h
|
|
|
|
if BUILD_LINUX
|
|
USER_C += \
|
|
os/linux/nfs.c \
|
|
os/linux/smb.c
|
|
endif
|
|
|
|
if BUILD_FREEBSD
|
|
USER_C += \
|
|
os/freebsd/nfs.c \
|
|
os/freebsd/smb.c
|
|
endif
|
|
|
|
libshare_la_SOURCES = $(USER_C)
|
|
|
|
include $(top_srcdir)/config/CppCheck.am
|