0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/buildscripts/hacks_mandriva.py

9 lines
211 B
Python
Raw Normal View History

import os
import glob
def insert( env , options ):
jslibPaths = glob.glob('/usr/include/js-*/')
if len(jslibPaths) >= 1:
jslibPath = jslibPaths.pop()
env.Append( CPPPATH=[ jslibPath ] )