0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-28 07:59:02 +01:00

To emancipate from futur update of mandriva's jslib

This commit is contained in:
Ludovic Bellière 2010-03-22 21:18:58 +01:00 committed by Eliot Horowitz
parent 192dc4f79a
commit d52baa2858
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,9 @@
import os
import glob
def insert( env , options ):
if os.path.exists( "/usr/include/js-1.70/" ):
env.Append( CPPPATH=[ "/usr/include/js-1.70/" ] )
jslibPaths = glob.glob('/usr/include/js-*/')
if len(jslibPaths) >= 1:
jslibPath = jslibPaths.pop()
env.Append( CPPPATH=[ jslibPath ] )

View File

@ -1,5 +1,5 @@
%define name mongodb
%define version 1.2.4
%define version 1.3.4
%define release %mkrel 1
Name: %{name}
@ -103,6 +103,7 @@ fi
%{_bindir}/mongofiles
%{_bindir}/mongoimport
%{_bindir}/mongorestore
%{_bindir}/mongostat
%{_mandir}/man1/mongo.1*
%{_mandir}/man1/mongod.1*
@ -111,6 +112,7 @@ fi
%{_mandir}/man1/mongofiles.1*
%{_mandir}/man1/mongoimport.1*
%{_mandir}/man1/mongosniff.1*
%{_mandir}/man1/mongostat.1*
%{_mandir}/man1/mongorestore.1*
%files server