Linux: Add missing semi-colon
authorMarc Dionne <marc.c.dionne@gmail.com>
Mon, 11 Feb 2013 23:49:21 +0000 (18:49 -0500)
committerDerrick Brashear <shadow@your-file-system.com>
Tue, 12 Feb 2013 19:38:30 +0000 (11:38 -0800)
Add a missing semi-colon in the error case when missing symbols
are detected.  The effect is strictly cosmetic - a few additional
error messages would follow the "undefined symbols" error.

Change-Id: I2a8bfb0a3ef12b5bcee6946804df025c75d84830
Reviewed-on: http://gerrit.openafs.org/9095
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@your-file-system.com>

src/libafs/MakefileProto.LINUX.in

index 7c22992..f5c2472 100644 (file)
@@ -378,7 +378,7 @@ ${LINUX_LIBAFS_NAME}.ko afspag.ko: .FORCE
        env EXTRA_CFLAGS="${EXTRA_CFLAGS}" $(MAKE) -C ${LINUX_KERNEL_BUILD} M=@TOP_OBJDIR@/src/libafs/${KDIR} modules 2>&1 | tee .makelog
        @if [ `grep ^WARNING .makelog | wc -l` -ne 0 ]; then \
                echo Error: Undefined symbols in modules ; \
-               rm .makelog \
+               rm .makelog ; \
                exit 1 ; \
        fi
        rm .makelog