LU-1481 build: quiet warnings due to := assignment
When running automake to generate Makefiles, newer compilers will warn about non-portable assignments: lvfs/autoMakefile.am:52: `:='-style assignments are not portable The use of ":=" vs. "=" determines when conditional expressions are evaluated, but have absolutely no use for constant assignments, so there is no point in using them at all in that case. Convert all ":=" to "=" for constant assignments, leaving the decision to use ":=" for conditional assignments until later. Signed-off-by:Andreas Dilger <adilger@whamcloud.com> Change-Id: I76caedbc1368a0d2fe02137c46b46c36fc3a500c Reviewed-on: http://review.whamcloud.com/3129 Tested-by: Hudson Reviewed-by:
Brian J. Murrell <brian@whamcloud.com> Tested-by:
Maloo <whamcloud.maloo@gmail.com> Reviewed-by:
Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by:
Oleg Drokin <green@whamcloud.com>
Showing
- build/autoMakefile.am 1 addition, 1 deletionbuild/autoMakefile.am
- ldiskfs/autoMakefile.am 3 additions, 3 deletionsldiskfs/autoMakefile.am
- libcfs/autoconf/Makefile.am 1 addition, 1 deletionlibcfs/autoconf/Makefile.am
- libcfs/include/libcfs/Makefile.am 3 additions, 3 deletionslibcfs/include/libcfs/Makefile.am
- libcfs/include/libcfs/darwin/Makefile.am 1 addition, 1 deletionlibcfs/include/libcfs/darwin/Makefile.am
- libcfs/include/libcfs/linux/Makefile.am 2 additions, 2 deletionslibcfs/include/libcfs/linux/Makefile.am
- libcfs/include/libcfs/posix/Makefile.am 1 addition, 1 deletionlibcfs/include/libcfs/posix/Makefile.am
- libcfs/include/libcfs/util/Makefile.am 1 addition, 1 deletionlibcfs/include/libcfs/util/Makefile.am
- libcfs/libcfs/autoMakefile.am 13 additions, 11 deletionslibcfs/libcfs/autoMakefile.am
- libcfs/libcfs/darwin/Makefile.am 1 addition, 1 deletionlibcfs/libcfs/darwin/Makefile.am
- libcfs/libcfs/linux/Makefile.am 1 addition, 4 deletionslibcfs/libcfs/linux/Makefile.am
- libcfs/libcfs/posix/Makefile.am 1 addition, 1 deletionlibcfs/libcfs/posix/Makefile.am
- libcfs/libcfs/util/Makefile.am 1 addition, 2 deletionslibcfs/libcfs/util/Makefile.am
- lnet/autoconf/Makefile.am 1 addition, 1 deletionlnet/autoconf/Makefile.am
- lnet/include/lnet/Makefile.am 2 additions, 2 deletionslnet/include/lnet/Makefile.am
- lnet/include/lnet/darwin/Makefile.am 1 addition, 1 deletionlnet/include/lnet/darwin/Makefile.am
- lnet/include/lnet/linux/Makefile.am 1 addition, 1 deletionlnet/include/lnet/linux/Makefile.am
- lnet/klnds/socklnd/autoMakefile.am 5 additions, 6 deletionslnet/klnds/socklnd/autoMakefile.am
- lnet/lnet/autoMakefile.am 5 additions, 5 deletionslnet/lnet/autoMakefile.am
- lustre/autoMakefile.am 4 additions, 4 deletionslustre/autoMakefile.am
Please register or sign in to comment