summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dahl <matt2000@users.sourceforge.net>2002-05-16 10:23:30 +0000
committerMatthias Dahl <matt2000@users.sourceforge.net>2002-05-16 10:23:30 +0000
commitf815519f449d70959694c37215841af89f8fc3cc (patch)
tree970a2c4ced16574536f37fc00aa299656eba15fe
parent95e7c90aabb560038b792a4197a280532668270e (diff)
downloadxine-lib-f815519f449d70959694c37215841af89f8fc3cc.tar.gz
xine-lib-f815519f449d70959694c37215841af89f8fc3cc.tar.bz2
Fixing %configure trouble. Miguel and Daniel, could you please try again and
see if those problems still exist? They should be gone... CVS patchset: 1897 CVS date: 2002/05/16 10:23:30
-rw-r--r--misc/xine-lib.spec.in17
1 files changed, 15 insertions, 2 deletions
diff --git a/misc/xine-lib.spec.in b/misc/xine-lib.spec.in
index 03b7e13e7..54ff3f709 100644
--- a/misc/xine-lib.spec.in
+++ b/misc/xine-lib.spec.in
@@ -74,9 +74,20 @@ complies to the GPL.
%build
if [ ! -f configure ]; then
- ./cvscompile.sh
+ NO_CONFIGURE=1 ./cvscompile.sh
fi
-%configure
+
+#
+# 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} \
+ --sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} \
+ --infodir=%{_infodir}
make
%install
@@ -113,6 +124,8 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man3/*
%changelog
+* Thu May 16 2002 Matthias Dahl <matthew2k@web.de>
+- replaced %configure because it was causing trouble on certain configurations
* Sat May 11 2002 Matthias Dahl <matthew2k@web.de>
- reworked/revamped spec file, still needs some tuning (BuildPreReq, ...)
* Thu May 2 2002 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>