659bbf7e1b
Recently we went through the source tree and replaced
$(srctree)/$(src) w/ $(src). However, the gdb scripts Makefile had a
hidden $(srctree)/$(src) that looked like this:
$(abspath $(srctree))/$(src)
Because we missed that then my installed kernel had symlinks that
looked like this:
__init__.py ->
${INSTALL_DIR}/$(INSTALL_DIR}/scripts/gdb/linux/__init__.py
Let's also replace the midden $(abspath $(srctree))/$(src) with
$(src). Now:
__init__.py ->
$(INSTALL_DIR}/scripts/gdb/linux/__init__.py
Fixes:
|
||
---|---|---|
.. | ||
.gitignore | ||
Makefile | ||
__init__.py | ||
clk.py | ||
config.py | ||
constants.py.in | ||
cpus.py | ||
device.py | ||
dmesg.py | ||
genpd.py | ||
interrupts.py | ||
lists.py | ||
mm.py | ||
modules.py | ||
page_owner.py | ||
pgtable.py | ||
proc.py | ||
radixtree.py | ||
rbtree.py | ||
slab.py | ||
stackdepot.py | ||
symbols.py | ||
tasks.py | ||
timerlist.py | ||
utils.py | ||
vfs.py | ||
vmalloc.py |