diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-03-20 22:43:10 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-03-20 22:43:10 +0000 |
commit | 0022b738691998cec611963e1c221c00468533ed (patch) | |
tree | d9179d19ec2dbeaa26ef6e5593a2c5eb17f4343c /gdb/Makefile.in | |
parent | 864dbc904ea24ac07192a947c32cdd48ee5a6a6f (diff) | |
download | gdb-0022b738691998cec611963e1c221c00468533ed.zip gdb-0022b738691998cec611963e1c221c00468533ed.tar.gz gdb-0022b738691998cec611963e1c221c00468533ed.tar.bz2 |
2003-03-20 Andrew Cagney <cagney@redhat.com>
* Makefile.in (init.c): Don't add $(srcdir) prefix when a file
already has a full path.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 23c368e..43f90cd 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -966,6 +966,13 @@ uninstall: force $(CONFIG_UNINSTALL) # everything else. The catch is that other modules still take the # address of these builtin types forcing them to be variables, sigh! +# NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is +# anchored on the first column and excludes the ``/'' character so +# that it doesn't add the $(srcdir) prefix to any file that already +# has an absolute path. It turns out that $(DEC)'s True64 make +# automatically adds the $(srcdir) prefixes when it encounters files +# in sub-directories such as cli/ and mi/. + INIT_FILES = $(OBS) $(TSOBS) $(CONFIG_OBS) $(CONFIG_INITS) init.c: $(INIT_FILES) @echo Making init.c @@ -985,7 +992,7 @@ init.c: $(INIT_FILES) -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \ -e 's/\.o/.c/' \ -e 's,signals\.c,signals/signals\.c,' \ - -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \ + -e 's|^\([^ /][^ ]*\)|$(srcdir)/\1|g' | \ while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \ sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/\1/' | \ ( echo _initialize_gdbtypes ; grep -v '^_initialize_gdbtypes$$' ) > init.l-tmp |