[Lsb-messages] /var/www/bzr/lsb/devel/appbat r986: Turn off "pretty" automake build output, and hack-fix a header problem.

Jeff Licquia licquia at linuxfoundation.org
Tue Aug 27 17:24:29 UTC 2013


------------------------------------------------------------
revno: 986
committer: Jeff Licquia <licquia at linuxfoundation.org>
branch nick: appbat
timestamp: Tue 2013-08-27 13:24:29 -0400
message:
  Turn off "pretty" automake build output, and hack-fix a header problem.
  
  Header problem: libXmu has its own copy of some X11 headers, and this
  wasn't picking up bugfix updates in the LSB SDK.  So, copy one header
  out immediately before the build.
modified:
  rpm/lsb-build-libbat.spec
-------------- next part --------------
=== modified file 'rpm/lsb-build-libbat.spec'
--- a/rpm/lsb-build-libbat.spec	2013-05-21 23:34:25 +0000
+++ b/rpm/lsb-build-libbat.spec	2013-08-27 17:24:29 +0000
@@ -196,7 +196,7 @@
 	--disable-shared \
 	--with-pic
 	
-make
+make V=1
 make DESTDIR=%{buildroot} install
 
 # already in lsb-build-base
@@ -220,13 +220,17 @@
 # ----------------------------------------------------
 # libXmu
 cd libXmu-%{libxmu_ver}
+
+# HACK: copy Intrinsic.h from the LSB SDK
+cp /opt/lsb/include/X11/Intrinsic.h include/X11/Intrinsic.h
+
 CFLAGS="-I %{buildroot}%{prefix}/include" ./configure \
 	--prefix=%{prefix} \
 	--libdir=%{libdir} \
 	--disable-shared \
 	--with-pic
 
-make
+make V=1
 make DESTDIR=%{buildroot} install
 cd ..
 



More information about the lsb-messages mailing list