aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2023-08-29 09:15:57 +0000
committerWerner Koch <[email protected]>2023-08-29 09:15:57 +0000
commitf88cdb1fd9571d35c162f00d6723b2df32293544 (patch)
tree399b9902c7effa5112e45ec125079514f2510628
parentgpgsm: Avoid warnings due to enum conversions (diff)
downloadgnupg-f88cdb1fd9571d35c162f00d6723b2df32293544.tar.gz
gnupg-f88cdb1fd9571d35c162f00d6723b2df32293544.zip
scd,w32: Fix build dependency
* scd/Makefile.am (scdaemon_DEPENDENCIES): Fix. -- Fixes-commit: 625fb548998fb4d48b23c6e4cfa5bfa72f1d74e2
-rw-r--r--scd/Makefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/scd/Makefile.am b/scd/Makefile.am
index d02bbca5f..4539731cb 100644
--- a/scd/Makefile.am
+++ b/scd/Makefile.am
@@ -29,6 +29,8 @@ include $(top_srcdir)/am/cmacros.am
if HAVE_W32_SYSTEM
scdaemon_rc_objs = $(resource_objs) scdaemon-w32info.o
scdaemon-w32info.o : scdaemon.w32-manifest ../common/w32info-rc.h
+else
+scdaemon_rc_objs = $(resource_objs)
endif
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) \
@@ -51,4 +53,4 @@ scdaemon_LDADD = $(libcommonpth) \
$(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(LIBASSUAN_LIBS) $(NPTH_LIBS) \
$(LIBUSB_LIBS) $(GPG_ERROR_LIBS) \
$(LIBINTL) $(DL_LIBS) $(NETLIBS) $(LIBICONV) $(scdaemon_rc_objs)
-scdaemon_DEPENDENCIES = $(resource_objs)
+scdaemon_DEPENDENCIES = $(scdaemon_rc_objs)