Blame SOURCES/gdbinit

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