]> Pileus Git - ~andy/gtk/commitdiff
Put output files in the current directory and not in the $(srcdir) since
authorMartin Baulig <martin@home-of-linux.org>
Tue, 17 Nov 1998 20:47:33 +0000 (20:47 +0000)
committerMartin Baulig <martin@src.gnome.org>
Tue, 17 Nov 1998 20:47:33 +0000 (20:47 +0000)
1998-11-17  Martin Baulig  <martin@home-of-linux.org>

* gtk/genmarshal.pl: Put output files in the current directory
and not in the $(srcdir) since the VPATH is ignored for built
sources.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/genmarshal.pl

index cda6cabdf834a01a3cd776e735d599b7087e20fd..a3c1835e77fc784a6f1637a7b35b536f497d6dbc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1998-11-17  Martin Baulig  <martin@home-of-linux.org>
+
+       * gtk/genmarshal.pl: Put output files in the current directory
+       and not in the $(srcdir) since the VPATH is ignored for built
+       sources.
+
 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
 
        * gtk/genmarshal.pl
index cda6cabdf834a01a3cd776e735d599b7087e20fd..a3c1835e77fc784a6f1637a7b35b536f497d6dbc 100644 (file)
@@ -1,3 +1,9 @@
+1998-11-17  Martin Baulig  <martin@home-of-linux.org>
+
+       * gtk/genmarshal.pl: Put output files in the current directory
+       and not in the $(srcdir) since the VPATH is ignored for built
+       sources.
+
 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
 
        * gtk/genmarshal.pl
index cda6cabdf834a01a3cd776e735d599b7087e20fd..a3c1835e77fc784a6f1637a7b35b536f497d6dbc 100644 (file)
@@ -1,3 +1,9 @@
+1998-11-17  Martin Baulig  <martin@home-of-linux.org>
+
+       * gtk/genmarshal.pl: Put output files in the current directory
+       and not in the $(srcdir) since the VPATH is ignored for built
+       sources.
+
 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
 
        * gtk/genmarshal.pl
index cda6cabdf834a01a3cd776e735d599b7087e20fd..a3c1835e77fc784a6f1637a7b35b536f497d6dbc 100644 (file)
@@ -1,3 +1,9 @@
+1998-11-17  Martin Baulig  <martin@home-of-linux.org>
+
+       * gtk/genmarshal.pl: Put output files in the current directory
+       and not in the $(srcdir) since the VPATH is ignored for built
+       sources.
+
 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
 
        * gtk/genmarshal.pl
index cda6cabdf834a01a3cd776e735d599b7087e20fd..a3c1835e77fc784a6f1637a7b35b536f497d6dbc 100644 (file)
@@ -1,3 +1,9 @@
+1998-11-17  Martin Baulig  <martin@home-of-linux.org>
+
+       * gtk/genmarshal.pl: Put output files in the current directory
+       and not in the $(srcdir) since the VPATH is ignored for built
+       sources.
+
 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
 
        * gtk/genmarshal.pl
index cda6cabdf834a01a3cd776e735d599b7087e20fd..a3c1835e77fc784a6f1637a7b35b536f497d6dbc 100644 (file)
@@ -1,3 +1,9 @@
+1998-11-17  Martin Baulig  <martin@home-of-linux.org>
+
+       * gtk/genmarshal.pl: Put output files in the current directory
+       and not in the $(srcdir) since the VPATH is ignored for built
+       sources.
+
 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
 
        * gtk/genmarshal.pl
index cda6cabdf834a01a3cd776e735d599b7087e20fd..a3c1835e77fc784a6f1637a7b35b536f497d6dbc 100644 (file)
@@ -1,3 +1,9 @@
+1998-11-17  Martin Baulig  <martin@home-of-linux.org>
+
+       * gtk/genmarshal.pl: Put output files in the current directory
+       and not in the $(srcdir) since the VPATH is ignored for built
+       sources.
+
 Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
 
        * gtk/genmarshal.pl
index 5ae52879e7902b7c1c74b38e0d1c33ce43cd5a75..db0487b99021a3cb9fe1421152c2474c9dbf73f4 100755 (executable)
@@ -33,8 +33,8 @@ sub indent {
 }
 
 open(IL, "<$srcdir/gtkmarshal.list") || die("Open failed: $!");
-open(OH, ">$srcdir/s-gmh") || die("Open failed: $!");
-open(OS, ">$srcdir/s-gmc") || die("Open failed: $!");
+open(OH, ">s-gmh") || die("Open failed: $!");
+open(OS, ">s-gmc") || die("Open failed: $!");
 
 print OH <<EOT;
 #ifndef __GTKMARSHAL_H__
@@ -201,5 +201,5 @@ EOT
 
 close(IL); close(OH); close(OS);
 
-indent("$srcdir/s-gmh");
-indent("$srcdir/s-gmc");
+indent("s-gmh");
+indent("s-gmc");