diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-11 03:45:58 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-11 03:45:58 +0000 |
commit | 2091dfe763b0982a77557b325173bb8f2e3274b2 (patch) | |
tree | e4cf4556f97401dde851061944644665d652c0df | |
parent | ac3810bb690b55a64d1e84f760c749a24c0a4084 (diff) | |
download | tdesdk-2091dfe763b0982a77557b325173bb8f2e3274b2.tar.gz tdesdk-2091dfe763b0982a77557b325173bb8f2e3274b2.zip |
Repaired kcachegrind compilation on gcc4.x+
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1072826 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | kcachegrind/kcachegrind/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcachegrind/kcachegrind/Makefile.am b/kcachegrind/kcachegrind/Makefile.am index 3b4871aa..76db3d6b 100644 --- a/kcachegrind/kcachegrind/Makefile.am +++ b/kcachegrind/kcachegrind/Makefile.am @@ -53,10 +53,10 @@ tipdir = $(kde_datadir)/kcachegrind tip_DATA = tips messages: rc.cpp - $(PREPARETIPS) > tips.cpp - LIST=`find . -name \*.h -o -name \*.cpp`; \ + $(PREPARETIPS) > tips.txt + LIST=`find . -name \*.h -o -name \*.cpp -o -name \*.txt`; \ if test -n "$$LIST"; then \ $(XGETTEXT) $$LIST -o $(podir)/kcachegrind.pot; \ fi - rm -f tips.cpp + rm -f tips.txt |