diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2003-01-30 05:17:56 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2003-01-30 05:17:56 +0000 |
commit | f1d5271a09351410924c55063160c141b4a05eca (patch) | |
tree | b4de18d96babee2fc79bd13fd69f74efc538164c /gcc | |
parent | 266a9ef1e8735333c95d04616fe23a694cf5afc9 (diff) | |
download | gcc-f1d5271a09351410924c55063160c141b4a05eca.zip gcc-f1d5271a09351410924c55063160c141b4a05eca.tar.gz gcc-f1d5271a09351410924c55063160c141b4a05eca.tar.bz2 |
* objc/Make-lang.in (objc-parse.y): Find c-parse.in in $(srcdir).
From-SVN: r62127
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/objc/Make-lang.in | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 38a49a7..2ef4965 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-01-30 Loren James Rittle <ljrittle@acm.org> + + * objc/Make-lang.in (objc-parse.y): Find c-parse.in in $(srcdir). + 2003-01-30 Alexandre Oliva <aoliva@redhat.com> * config/fp-bit.h (__make_dp): Declare if TMODES. @@ -4345,7 +4349,7 @@ Thu Dec 19 23:44:09 2002 J"orn Rennecke <joern.rennecke@superh.com> * alloc-pool.c: New file. * alloc-pool.h: New file. -2002-12-18 Loren James Rittle <rittle@labs.mot.com> +2002-12-18 Loren James Rittle <ljrittle@acm.org> * gcc.c (validate_switches): Robustify against skipping past '\0'. diff --git a/gcc/objc/Make-lang.in b/gcc/objc/Make-lang.in index 070659a..1b06b38 100644 --- a/gcc/objc/Make-lang.in +++ b/gcc/objc/Make-lang.in @@ -84,7 +84,7 @@ $(parsedir)/objc/objc-parse.c : $(parsedir)/objc/objc-parse.y false ; \ fi -$(parsedir)/objc/objc-parse.y: $(parsedir)/c-parse.in +$(parsedir)/objc/objc-parse.y: $(srcdir)/c-parse.in echo '/*WARNING: This file is automatically generated!*/' >tmp-objc-prs.y sed -e "/^ifc$$/,/^end ifc$$/d" \ -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \ |