From c953505a5946d615b3fcaf49e4247f9a3d734f93 Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Mon, 1 Nov 2010 09:03:43 +0000 Subject: [PATCH] Build: Fix broken bracketing in shared Makefile There was a stray ( in the shared library build system. We hadn't noticed this, as the only place that uses the shared makefile and produces binaries is the hcrypto test suite that isn't built by default. Change-Id: I1414c0e1db52307f8ffff4214f411bc028c03fd5 Reviewed-on: http://gerrit.openafs.org/3210 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- src/config/Makefile.shared.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Makefile.shared.in b/src/config/Makefile.shared.in index 467e99c76..b1bca1f5e 100644 --- a/src/config/Makefile.shared.in +++ b/src/config/Makefile.shared.in @@ -3,7 +3,7 @@ AFS_CFLAGS=$(SHD_CFLAGS) AFS_LDFLAGS=$(SHD_LDFLAGS) AFS_CCRULE=$(MT_CC) $(AFS_CFLAGS) $(CFLAGS_$(@)) -o $@ -c -AFS_LDRULE=$(MT_CC) $(AFS_CFLAGS) $(AFS_LDFLAGS) $(LDFLAGS_($(@)) -o $@ +AFS_LDRULE=$(MT_CC) $(AFS_CFLAGS) $(AFS_LDFLAGS) $(LDFLAGS_$(@)) -o $@ .c.o: $(AFS_CCRULE) $< -- 2.39.5