diff options
| author | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2011-04-23 13:45:28 +0000 |
|---|---|---|
| committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2011-04-23 13:45:28 +0000 |
| commit | d9f8ef49a22d310705c4997a74d6d2a0f60c636b (patch) | |
| tree | b0a98ea68245893c539c05349840c27672f03566 /databases/mongodb/files/patch-SConstruct | |
| parent | - make fail early when old netpbm is installed (diff) | |
- Update from 1.6.5 to 1.8.1 [1]
- Attached a patch to fix the TERM handling issue in SConstruct [1]
- Added "ldconfig" to the rc.d script to start mongod correctly if running in a jail [1]
- Remove unsupported FreeBSD version stuff
- Replace pkg-install and pkg-deinstall with USERS and GROUPS in Makefile
PR: ports/156297 [1]
Submitted by: Mirko Zinn <mail AT derzinn.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=273103
Diffstat (limited to 'databases/mongodb/files/patch-SConstruct')
| -rw-r--r-- | databases/mongodb/files/patch-SConstruct | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/databases/mongodb/files/patch-SConstruct b/databases/mongodb/files/patch-SConstruct new file mode 100644 index 000000000000..ac3f01d83d64 --- /dev/null +++ b/databases/mongodb/files/patch-SConstruct @@ -0,0 +1,14 @@ +--- SConstruct.orig 2011-04-06 06:40:13.000000000 +0200 ++++ SConstruct 2011-04-09 10:59:56.000000000 +0200 +@@ -679,7 +679,10 @@ + + #make scons colorgcc friendly + env['ENV']['HOME'] = os.environ['HOME'] +- env['ENV']['TERM'] = os.environ['TERM'] ++ try: ++ env['ENV']['TERM'] = os.environ['TERM'] ++ except KeyError: ++ env['ENV']['TERM'] = 'dumb' + + if linux and has_option( "sharedclient" ): + env.Append( LINKFLAGS=" -Wl,--as-needed -Wl,-zdefs " )
\ No newline at end of file |
