Description of problem: gdb doesn't load all the files in /etc/gdbinit.d Version-Release number of selected component (if applicable): gdb-7.6-30.fc19.x86_64 There is part of a solution here: http://stackoverflow.com/questions/11851499/gdb-automatically-load-python-script /etc/gdbinit should be: source /etc/gdbinit.py /etc/gdbinit.py should be something like: import glob files = glob.iglob('/etc/gdbinit.d/*') for f in files: gdb.execute('source %s' % f)
This is unrelated to Bug 981356.
* Fri Aug 30 2013 Jan Kratochvil <jan.kratochvil> - 7.6.1-39.fc19 - Load /etc/gdbinit.d/*.{gdb,py} files automatically (BZ 981520).