By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 11
Collapse All | Expand All

(-)file_not_specified_in_diff (-3 / +7 lines)
Line  Link Here
0
-- a/admin/cvs.sh
0
++ b/admin/cvs.sh
Lines 554-562 Link Here
554
   fi
554
   fi
555
   perl -e '$mes=0; while (<STDIN>) { next if (/^(if\s|else\s|endif)/); if (/^messages:/) { $mes=1; print $_; next; } if ($mes) { if (/$\\(XGETTEXT\)/ && / -o/) { s/ -o \$\(podir\)/ _translatorinfo.cpp -o \$\(podir\)/ } print $_; } else { print $_; } }' < Makefile.am | egrep -v '^include ' > _transMakefile
555
   perl -e '$mes=0; while (<STDIN>) { next if (/^(if\s|else\s|endif)/); if (/^messages:/) { $mes=1; print $_; next; } if ($mes) { if (/$\\(XGETTEXT\)/ && / -o/) { s/ -o \$\(podir\)/ _translatorinfo.cpp -o \$\(podir\)/ } print $_; } else { print $_; } }' < Makefile.am | egrep -v '^include ' > _transMakefile
556
   kdepotpath=${includedir:-`kde-config --expandvars --install include`}/kde.pot
556
   kdeconfig=kde-config
557
   if ! which $kdeconfig; then
558
        kdeconfig=/usr/kde3/bin/kde-config
559
   fi
560
   kdepotpath=${includedir:-`$kdeconfig --expandvars --install include`}/kde.pot
557
   if ! test -f $kdepotpath; then
561
   if ! test -f $kdepotpath; then
558
       kdepotpath=`kde-config --expandvars --prefix`/include/kde.pot
562
       kdepotpath=`$kdeconfig --expandvars --prefix`/include/kde.pot
559
   fi
563
   fi
560
   $MAKE -s -f _transMakefile podir=$podir EXTRACTRC="$EXTRACTRC" PREPARETIPS="$PREPARETIPS" srcdir=. \
564
   $MAKE -s -f _transMakefile podir=$podir EXTRACTRC="$EXTRACTRC" PREPARETIPS="$PREPARETIPS" srcdir=. \

Return to bug 11