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 2950
Collapse All | Expand All

(-)a/admin/kde.py (-6 / +6 lines)
Lines 124-141 def detect_kde(env): Link Here
124
	env['QT_UIC'] = uic
124
	env['QT_UIC'] = uic
125
125
126
	print("Checking for moc                  : ")
126
	print("Checking for moc                  : ")
127
	moc = qtdir + "/bin/moc"
127
	moc = qtdir + "/bin/tmoc"
128
	if os.path.isfile(moc):
128
	if os.path.isfile(moc):
129
		print(GREEN+"moc was found as "+moc+NORMAL)
129
		print(GREEN+"moc was found as "+moc+NORMAL)
130
	else:
130
	else:
131
		moc = os.popen("which moc 2>/dev/null").read().strip()
131
		moc = os.popen("which tmoc 2>/dev/null").read().strip()
132
		if len(moc):
132
		if len(moc):
133
			print(YELLOW+"moc was found as "+moc+NORMAL)
133
			print(YELLOW+"moc was found as "+moc+NORMAL)
134
		elif os.path.isfile("/usr/share/tqt3/bin/moc"):
134
		elif os.path.isfile("/usr/share/tqt3/bin/tmoc"):
135
			moc = "/usr/share/tqt3/bin/moc"
135
			moc = "/usr/share/tqt3/bin/tmoc"
136
			print(YELLOW+"moc was found as "+moc+NORMAL)
136
			print(YELLOW+"moc was found as "+moc+NORMAL)
137
		elif os.path.isfile("/usr/share/qt3/bin/moc"):
137
		elif os.path.isfile("/usr/share/qt3/bin/tmoc"):
138
			moc = "/usr/share/qt3/bin/moc"
138
			moc = "/usr/share/qt3/bin/tmoc"
139
			print(YELLOW+"moc was found as "+moc+NORMAL)
139
			print(YELLOW+"moc was found as "+moc+NORMAL)
140
		else:
140
		else:
141
			print(RED+"moc was not found - set QTDIR or put it in your PATH ?"+NORMAL)
141
			print(RED+"moc was not found - set QTDIR or put it in your PATH ?"+NORMAL)

Return to bug 2950