diff options
author | Andreas Schwab <schwab@suse.de> | 2005-07-16 17:40:00 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2005-07-16 17:40:00 +0000 |
commit | 8f59c51bb13229c9de2f774b0ce63aedcb6cb6e7 (patch) | |
tree | 479ee760c302c5331c499b6a13be5033a98ccf8c /libjava/scripts/makemake.tcl | |
parent | 2c00bd425552a133054e65626716a425832c6520 (diff) | |
download | gcc-8f59c51bb13229c9de2f774b0ce63aedcb6cb6e7.zip gcc-8f59c51bb13229c9de2f774b0ce63aedcb6cb6e7.tar.gz gcc-8f59c51bb13229c9de2f774b0ce63aedcb6cb6e7.tar.bz2 |
makemake.tcl (emit_package_rule): Emit command to create target directory.
* scripts/makemake.tcl (emit_package_rule): Emit command to create
target directory.
* Makefile.am (%.lo): Don't create it here.
* sources.am, Makefile.in: Regenerated.
From-SVN: r102096
Diffstat (limited to 'libjava/scripts/makemake.tcl')
-rwxr-xr-x | libjava/scripts/makemake.tcl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libjava/scripts/makemake.tcl b/libjava/scripts/makemake.tcl index 0a87fb5..4602201 100755 --- a/libjava/scripts/makemake.tcl +++ b/libjava/scripts/makemake.tcl @@ -239,6 +239,7 @@ proc emit_package_rule {package} { # A rule to make the phony file we are going to compile. puts "$lname: \$($varname)" + puts "\t@\$(mkinstalldirs) \$(dir \$@)" puts "\t@for file in \$($varname); do \\" puts "\t if test -f \$(srcdir)/\$\$file; then \\" puts "\t echo \$(srcdir)/\$\$file; \\" |