mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +00:00
Fix uninstalled parser execution
This commit is contained in:
parent
c77fa39ad1
commit
c49b48e9fe
1 changed files with 2 additions and 1 deletions
|
@ -152,7 +152,8 @@ namespace GtkSharp.Parsing {
|
|||
|
||||
string[] filenames = (string[]) realfiles.ToArray (typeof (string));
|
||||
string pp_args = String.Join (" ", filenames);
|
||||
system ("gapi_pp.pl " + pp_args + " | gapi2xml.pl " + ns + " " + prefile + " " + lib);
|
||||
string path = Path.GetDirectoryName (System.Reflection.Assembly.GetCallingAssembly ().Location);
|
||||
system (path + "/gapi_pp.pl " + pp_args + " | " + path + "/gapi2xml.pl " + ns + " " + prefile + " " + lib);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue