diff options
author | Matthias Dahl <matt2000@users.sourceforge.net> | 2002-05-27 09:21:51 +0000 |
---|---|---|
committer | Matthias Dahl <matt2000@users.sourceforge.net> | 2002-05-27 09:21:51 +0000 |
commit | 721c373cce216aa54bdefa6d8a9cebd24affa788 (patch) | |
tree | 201c1836953e049a54a60b5dffa56e2d395f4265 | |
parent | 6bfbe895e17c3e553f34b42dced2edeed93362f2 (diff) | |
download | xine-lib-721c373cce216aa54bdefa6d8a9cebd24affa788.tar.gz xine-lib-721c373cce216aa54bdefa6d8a9cebd24affa788.tar.bz2 |
This should make it easier to make rpm packages for different architectures.
Could everybody please check that the %{_target_platform} macro is available
on his/her rpm based distro? Thanks.
CVS patchset: 1948
CVS date: 2002/05/27 09:21:51
-rw-r--r-- | misc/xine-lib.spec.in | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/misc/xine-lib.spec.in b/misc/xine-lib.spec.in index e8d045ba2..1b907134a 100644 --- a/misc/xine-lib.spec.in +++ b/misc/xine-lib.spec.in @@ -167,11 +167,12 @@ fi # currently we do not use %%configure as it seems to cause trouble with # certain automake produced configure scripts - depending on automake version. # -./configure --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} \ - --bindir=%{_bindir} --sbindir=%{_sbindir} \ - --sysconfdir=%{_sysconfdir} --datadir=%{_datadir} \ - --includedir=%{_includedir} --libdir=%{_libdir} \ - --libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} \ +./configure --build=%{_target_platform} --prefix=%{_prefix} \ + --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} \ + --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} \ + --datadir=%{_datadir} --includedir=%{_includedir} \ + --libdir=%{_libdir} --libexecdir=%{_libexecdir} \ + --localstatedir=%{_localstatedir} \ --sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} \ --infodir=%{_infodir} make @@ -210,6 +211,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon May 27 2002 Matthias Dahl <matthew2k@web.de> +- added passing of build parameter to configure * Sun May 26 2002 Matthias Dahl <matthew2k@web.de> - added german translations by Manfred Tremmel <Manfred.Tremmel@iiv.de> - added fixes (missing -l cs) by Manfred Tremmel <Manfred.Tremmel@iiv.de> |