From: Simon Wilkinson Date: Mon, 1 Nov 2010 09:03:43 +0000 (+0000) Subject: Build: Fix broken bracketing in shared Makefile X-Git-Tag: openafs-devel-1_7_1~1248 X-Git-Url: http://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=c953505a5946d615b3fcaf49e4247f9a3d734f93 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 --- diff --git a/src/config/Makefile.shared.in b/src/config/Makefile.shared.in index 467e99c..b1bca1f 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) $<