diff options
author | jstebbins <[email protected]> | 2009-03-01 20:49:30 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-03-01 20:49:30 +0000 |
commit | c5c52e5c71acd2b4a88bcf674bc30fd20611f476 (patch) | |
tree | 1c01e685fbc2b4802e75c54abd5d44fd93679b54 /gtk/module.rules | |
parent | dc202093832299fb42383b18e0da795c398aeecf (diff) |
LinGui: force invocation of gtk.build for every build so gtk make
can check all its dependencies
fix typo in about dialog
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2186 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/module.rules')
-rw-r--r-- | gtk/module.rules | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gtk/module.rules b/gtk/module.rules index 6c197199d..f7ce07045 100644 --- a/gtk/module.rules +++ b/gtk/module.rules @@ -6,8 +6,6 @@ xclean: gtk.xclean gtk.configure: $(GTK.CONFIGURE.stamp) -gtk.build: $(GTK.BUILD.stamp) - $(GTK.CONFIGURE.stamp): | $(dir $(GTK.CONFIGURE.stamp)) set -e; cd $(GTK.src/); NOCONFIGURE=1 ./autogen.sh set -e; cd $(GTK.build/); $(call fn.ABSOLUTE,$(GTK.src/))configure \ @@ -17,11 +15,9 @@ $(GTK.CONFIGURE.stamp): | $(dir $(GTK.CONFIGURE.stamp)) --with-hb=$(call fn.ABSOLUTE,$(BUILD/)) $(TOUCH.exe) $@ -$(GTK.BUILD.stamp): $(LIBHB.a) -$(GTK.BUILD.stamp): | $(dir $(GTK.BUILD.stamp)) -$(GTK.BUILD.stamp): $(GTK.CONFIGURE.stamp) +gtk.build: | $(GTK.build/) +gtk.build: $(GTK.CONFIGURE.stamp) +$(MAKE) -C $(GTK.build/) - $(TOUCH.exe) $@ gtk.install: $(MAKE) -C $(GTK.build/) install-strip |