Put output files in the current directory and not in the $(srcdir) since

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.
This commit is contained in:
Martin Baulig 1998-11-17 20:47:33 +00:00 committed by Martin Baulig
parent 3e1dcab4c0
commit cb4a61eaa3
8 changed files with 46 additions and 4 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View File

@ -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");