diff options
author | Michele Calgaro <[email protected]> | 2021-03-19 09:40:59 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-03-19 09:41:33 +0900 |
commit | 0d2159372c361ffd1f5fa9aeb9d915d26d9a4262 (patch) | |
tree | 0e745f65b8233970081a17b7981c0ca0a2cb1342 /src/about | |
parent | 2cbeae87feea188272057dd310fa2d4ee535b80a (diff) | |
download | klamav-0d2159372c361ffd1f5fa9aeb9d915d26d9a4262.tar.gz klamav-0d2159372c361ffd1f5fa9aeb9d915d26d9a4262.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit f8dcdf5cb308c5e8e82162b596b0900773394d95)
Diffstat (limited to 'src/about')
-rw-r--r-- | src/about/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/about/Makefile.in b/src/about/Makefile.in index 154e6c8..c8a6072 100644 --- a/src/about/Makefile.in +++ b/src/about/Makefile.in @@ -550,21 +550,21 @@ force-reedit: #>+ 21 clean-bcheck: - rm -f *.bchecktest.cc *.bchecktest.cc.class a.out + rm -f *.bchecktest.cpp *.bchecktest.cpp.class a.out bcheck: bcheck-am bcheck-am: @for i in ; do \ - if test $(srcdir)/$$i -nt $$i.bchecktest.cc; then \ - echo "int main() {return 0;}" > $$i.bchecktest.cc ; \ - echo "#include \"$$i\"" >> $$i.bchecktest.cc ; \ + if test $(srcdir)/$$i -nt $$i.bchecktest.cpp; then \ + echo "int main() {return 0;}" > $$i.bchecktest.cpp ; \ + echo "#include \"$$i\"" >> $$i.bchecktest.cpp ; \ echo "$$i"; \ - if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cc; then \ - rm -f $$i.bchecktest.cc; exit 1; \ + if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cpp; then \ + rm -f $$i.bchecktest.cpp; exit 1; \ fi ; \ - echo "" >> $$i.bchecktest.cc.class; \ - perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cc.class || { rm -f $$i.bchecktest.cc; exit 1; }; \ + echo "" >> $$i.bchecktest.cpp.class; \ + perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cpp.class || { rm -f $$i.bchecktest.cpp; exit 1; }; \ rm -f a.out; \ fi ; \ done |