diff options
author | jstebbins <[email protected]> | 2010-04-12 18:01:01 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-04-12 18:01:01 +0000 |
commit | 788762ec1d905d4783a62de27863ec8ebf66d284 (patch) | |
tree | 4fd54d66f2aa539677971ead01188bc52b31d73c /gtk/module.rules | |
parent | 1a466338ea91528105f73681f85238be96670b2a (diff) |
LinGui: improved rpm building
Resulting rpms have fewer warnings and no errors according to rpmlint.
No need to pre-build binaries. Just configure and "make pkg.create.rpm"
Standard fedora rpms can be found in:
build/stage/rpm/RPMS and SRPMS
Binary packages are renamed according to handbrake naming convention in:
build/pkg
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3220 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/module.rules')
-rw-r--r-- | gtk/module.rules | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/module.rules b/gtk/module.rules index c5de20ea8..e7d93e752 100644 --- a/gtk/module.rules +++ b/gtk/module.rules @@ -2,6 +2,7 @@ $(eval $(call import.MODULE.rules,GTK)) build: hgtk.build gtk.build install: gtk.install +install-strip: gtk.install-strip uninstall: gtk.uninstall clean: hgtk.clean gtk.clean xclean: hgtk.clean gtk.xclean @@ -34,6 +35,9 @@ gtk.build: | $(GTK.build/) gtk.build: $(GTK.CONFIGURE.stamp) $(LIBHB.a) +$(MAKE) -C $(GTK.build/) +gtk.install-strip: + $(MAKE) -C $(GTK.build/) prefix=$(PREFIX) install-strip + gtk.install: $(MAKE) -C $(GTK.build/) prefix=$(PREFIX) install |