Blame SOURCES/gdbinit

132741
# System-wide GDB initialization file.
132741
python
132741
import glob
132741
# glob.iglob is not available in python-2.4 (RHEL-5).
132741
for f in glob.glob('%{_sysconfdir}/gdbinit.d/*.gdb'):
132741
  gdb.execute('source %s' % f)
132741
for f in glob.glob('%{_sysconfdir}/gdbinit.d/*.py'):
132741
  gdb.execute('source %s' % f)
132741
end