]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
Build: Fix broken bracketing in shared Makefile
authorSimon Wilkinson <sxw@your-file-system.com>
Mon, 1 Nov 2010 09:03:43 +0000 (09:03 +0000)
committerDerrick Brashear <shadow@dementia.org>
Fri, 19 Nov 2010 12:51:56 +0000 (04:51 -0800)
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 <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
src/config/Makefile.shared.in

index 467e99c764fdc96240ff5799557607153d6fd3ba..b1bca1f5e0db2e798ae817184f180d8cdf214ee1 100644 (file)
@@ -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) $<