Page MenuHomeHEPForge

No OneTemporary

This document is not UTF8. It was detected as ISO-8859-1 (Latin 1) and converted to UTF8 for display.
diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,39 +1,45 @@
+2005-06-10 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
+
+ * */*/Makefile.am: Fixes to make distcheck work properly.
+
+ * quiet.pl: Cosmetics.
+
2005-06-08 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* configure.ac, Makefile.am: Added Ariande subdirectory.
* *** GLOBAL ***: Merged with libtool-devel branch.
2005-06-05 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* auto.pl: Changed order of auto-configurations.
2005-06-04 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* test/acinclude.m4: removed. using ThePEG/acinclude.m4 instead.
* auto.pl: Included autoheader for directories where it is neded.
2005-06-02 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* configure.ac, Makefile.am: Added test subdirectory.
* auto.pl: Added --foreign option to automake.
2005-06-01 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* Makefile.am: Added FTNPDF subdir.
* auto.pl: if called with -q, the Makefile.in files will be made
quiet with quiet.pl
* quiet.pl: Added script to automatically edit the Makefile.in
files to make them quiet by default (unless SHOWCOMMAND is
defined). This is to avoid the huge amount of (usually
unnecessary) information produced by the libtool compilation.
2005-05-31 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* auto.pl: Added script to go through subdirectories and run
aclocal, autoconf, libtoolize and automake.
diff --git a/quiet.pl b/quiet.pl
--- a/quiet.pl
+++ b/quiet.pl
@@ -1,63 +1,63 @@
#!/usr/bin/perl -pi
if ( /\@LIBTOOL\@/ ) {
print "ifdef SHOWCOMMAND\n";
print;
print "else\n";
s/\@LIBTOOL\@/\@LIBTOOL\@ --quiet/;
print;
print "endif\n";
$_ = "";
}
elsif ( /^\s+\$\(CXXLINK\)/ ) {
print "ifdef SHOWCOMMAND\n";
print;
- print "else\n\t\@echo \"linking shared library \$\@ ...\"\n";
+ print "else\n\t\@echo \"linking \$\@ ...\"\n";
s/\$\(CXXLINK\)/\@\$\(CXXLINK\)/;
print;
print "endif\n";
$_ = "";
}
elsif ( /^\s+\$\(LINK\)/ ) {
print "ifdef SHOWCOMMAND\n";
print;
- print "else\n\t\@echo \"linking shared library \$\@ ...\"\n";
+ print "else\n\t\@echo \"linking \$\@ ...\"\n";
s/\$\(LINK\)/\@\$\(LINK\)/;
print;
print "endif\n";
$_ = "";
}
elsif ( /^\s+\$\(F77COMPILE\)/ ) {
print "ifdef SHOWCOMMAND\n";
print;
print "else\n\t\@echo \"compiling \$(subdir)/\$\< ...\"\n";
s/\$\(F77COMPILE\)/\@\$\(F77COMPILE\)/;
print;
print "endif\n";
$_ = "";
}
elsif ( /^\s+\$\(LTF77COMPILE\)/ ) {
print "ifdef SHOWCOMMAND\n";
print;
print "else\n\t\@echo \"compiling \$(subdir)/\$\< ...\"\n";
s/\$\(LTF77COMPILE\)/\@\$\(LTF77COMPILE\)/;
print;
print "endif\n";
$_ = "";
}
elsif ( /\.cc\.lo/ || /\.cc\.o/ || /\.cc\.obj/ ) {
$chunk = "else\n\t\@echo \"compiling \$(subdir)/\$< ...\"\n";
print;
print "ifdef SHOWCOMMAND\n";
$_ = "";
}
elsif ( $_ =~ /^\s*$/ && $chunk ) {
$chunk .= "endif\n";
$chunk =~ s/if \$\(LTCXXCOMPILE\)/\@if \$\(LTCXXCOMPILE\)/g;
$chunk =~ s/if \$\(CXXCOMPILE\)/\@if \$\(CXXCOMPILE\)/g;
print $chunk;
$chunk = "";
}
elsif ( $chunk ) {
$chunk .= $_;
}

File Metadata

Mime Type
text/x-diff
Expires
Wed, May 14, 10:53 AM (1 d, 8 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5111287
Default Alt Text
(3 KB)

Event Timeline