summaryrefslogtreecommitdiff
path: root/debian/patches/LDFLAGS.patch
diff options
context:
space:
mode:
authorDmitry Smirnov <onlyjob@member.fsf.org>2013-08-04 05:49:48 +1000
committerDmitry Smirnov <onlyjob@member.fsf.org>2013-08-04 05:49:48 +1000
commitf5563d8240be0b355c53588139b9d1674676c691 (patch)
treee4d9c0a8c6a42762aa2e703c28f16aa9abeb6d2a /debian/patches/LDFLAGS.patch
parentreference get-orig-source implementation (diff)
downloadd2x-rebirth-f5563d8240be0b355c53588139b9d1674676c691.tar.gz
d2x-rebirth-f5563d8240be0b355c53588139b9d1674676c691.tar.bz2
d2x-rebirth-f5563d8240be0b355c53588139b9d1674676c691.zip
New upstream release [0.58.1] + changelog summarydebian/0.58.1-1
Diffstat (limited to 'debian/patches/LDFLAGS.patch')
-rw-r--r--debian/patches/LDFLAGS.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/patches/LDFLAGS.patch b/debian/patches/LDFLAGS.patch
deleted file mode 100644
index 0de9c2a..0000000
--- a/debian/patches/LDFLAGS.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Last-Update: 2012-12-31
-Author: Dmitry Smirnov <onlyjob@member.fsf.org>
-Forwarded: not-needed
-Description: use LDFLAGS from system environment
-
---- a/SConstruct
-+++ b/SConstruct
-@@ -295,9 +295,9 @@
- env['CXX'] = os.environ['CXX']
- if os.environ.has_key('CXXFLAGS'):
- env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
- if os.environ.has_key('LDFLAGS'):
-- env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
-+ env['__RPATH'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
-
- # windows or *nix?
- if sys.platform == 'win32':
- print "compiling on Windows"
bgstack15