[hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5134: Install stripped binaries into RPM/DEB packages.

  • From: noreply@xxxxxxxxxxxxx
  • To: HIPL core team <hipl-dev@xxxxxxxxxxxxx>
  • Date: Fri, 05 Nov 2010 14:22:25 -0000

------------------------------------------------------------
revno: 5134
committer: Diego Biurrun <diego@xxxxxxxxxx>
branch nick: trunk
timestamp: Fri 2010-11-05 15:17:19 +0100
message:
  Install stripped binaries into RPM/DEB packages.
  
  For our use cases, people requiring debug symbols will likely work with the
  sources directly and compile their own HIPL binaries. So it makes more sense
  to save installation footprint and keep our packages small by default.
modified:
  packaging/hipl-deb.spec
  packaging/hipl-rpm.spec


--
lp:hipl
https://code.launchpad.net/~hipl-core/hipl/trunk

Your team HIPL core team is subscribed to branch lp:hipl.
To unsubscribe from this branch go to 
https://code.launchpad.net/~hipl-core/hipl/trunk/+edit-subscription
=== modified file 'packaging/hipl-deb.spec'
--- packaging/hipl-deb.spec     2010-10-26 20:30:16 +0000
+++ packaging/hipl-deb.spec     2010-11-05 14:17:19 +0000
@@ -119,7 +119,7 @@
 %install
 rm -rf %{buildroot}
 
-make install DESTDIR=%{buildroot}
+make install-strip DESTDIR=%{buildroot}
 install -d %{buildroot}/etc/init.d
 install -m 755 packaging/debian-init.d/hipfw %{buildroot}/etc/init.d/hipfw
 install -m 755 packaging/debian-init.d/hipd %{buildroot}/etc/init.d/hipd

=== modified file 'packaging/hipl-rpm.spec'
--- packaging/hipl-rpm.spec     2010-10-26 20:30:16 +0000
+++ packaging/hipl-rpm.spec     2010-11-05 14:17:19 +0000
@@ -111,7 +111,7 @@
 
 # XX FIXME: add more python stuff from tools directory
 
-make install DESTDIR=%{buildroot}
+make install-strip DESTDIR=%{buildroot}
 install -d %{buildroot}/etc/rc.d/init.d
 install -m 755 packaging/fedora-init.d/hipfw %{buildroot}/etc/rc.d/init.d/hipfw
 install -m 755 packaging/fedora-init.d/hipd %{buildroot}/etc/rc.d/init.d/hipd

Other related posts:

  • » [hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5134: Install stripped binaries into RPM/DEB packages. - noreply