diff options
author | jstebbins <[email protected]> | 2009-07-05 19:49:12 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-07-05 19:49:12 +0000 |
commit | 57f4fe88724e9bcf6a1ad20cda96aae8213505dd (patch) | |
tree | 3603b0efad3b7c2685c7a485b827e1d31c056788 /gtk | |
parent | 57d0985f2d9f377b29e55369cc3a2cae107410c8 (diff) |
LinGui: fix a build problem
if marshalers.list timestamp is somehow made newer than marshalers.h/c
glib-genmarshal would fail to recreate marshalers.h/c. This isn't
normally a problem since I check these generated file into svn.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2668 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/src/Makefile.am b/gtk/src/Makefile.am index 28d5c8e5a..48df04924 100644 --- a/gtk/src/Makefile.am +++ b/gtk/src/Makefile.am @@ -130,10 +130,10 @@ resources.plist: create_resources resources.list $(icons_dep) internal_defaults. ghbcellrenderertext.c: marshalers.h marshalers.h: marshalers.list - glib-genmarshal --prefix=ghb_marshal marshalers.list --header > marshalers.h + glib-genmarshal --prefix=ghb_marshal $(srcdir)/marshalers.list --header > $(srcdir)/marshalers.h marshalers.c: marshalers.list - glib-genmarshal --prefix=ghb_marshal marshalers.list --body > marshalers.c + glib-genmarshal --prefix=ghb_marshal $(srcdir)/marshalers.list --body > $(srcdir)/marshalers.c gtk_update_icon_cache = gtk-update-icon-cache -f -t $(DESTDIR)/$(datadir)/icons/hicolor |