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:

committed by
Martin Baulig

parent
3e1dcab4c0
commit
cb4a61eaa3
@ -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>
|
Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* gtk/genmarshal.pl
|
* gtk/genmarshal.pl
|
||||||
|
@ -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>
|
Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* gtk/genmarshal.pl
|
* gtk/genmarshal.pl
|
||||||
|
@ -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>
|
Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* gtk/genmarshal.pl
|
* gtk/genmarshal.pl
|
||||||
|
@ -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>
|
Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* gtk/genmarshal.pl
|
* gtk/genmarshal.pl
|
||||||
|
@ -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>
|
Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* gtk/genmarshal.pl
|
* gtk/genmarshal.pl
|
||||||
|
@ -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>
|
Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* gtk/genmarshal.pl
|
* gtk/genmarshal.pl
|
||||||
|
@ -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>
|
Tue Nov 17 01:37:53 PST 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* gtk/genmarshal.pl
|
* gtk/genmarshal.pl
|
||||||
|
@ -33,8 +33,8 @@ sub indent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
open(IL, "<$srcdir/gtkmarshal.list") || die("Open failed: $!");
|
open(IL, "<$srcdir/gtkmarshal.list") || die("Open failed: $!");
|
||||||
open(OH, ">$srcdir/s-gmh") || die("Open failed: $!");
|
open(OH, ">s-gmh") || die("Open failed: $!");
|
||||||
open(OS, ">$srcdir/s-gmc") || die("Open failed: $!");
|
open(OS, ">s-gmc") || die("Open failed: $!");
|
||||||
|
|
||||||
print OH <<EOT;
|
print OH <<EOT;
|
||||||
#ifndef __GTKMARSHAL_H__
|
#ifndef __GTKMARSHAL_H__
|
||||||
@ -201,5 +201,5 @@ EOT
|
|||||||
|
|
||||||
close(IL); close(OH); close(OS);
|
close(IL); close(OH); close(OS);
|
||||||
|
|
||||||
indent("$srcdir/s-gmh");
|
indent("s-gmh");
|
||||||
indent("$srcdir/s-gmc");
|
indent("s-gmc");
|
||||||
|
Reference in New Issue
Block a user