diff options
author | Jérémy Lal <kapouer@melix.org> | 2011-02-24 09:05:23 +0800 |
---|---|---|
committer | Antonin Kral <a.kral@bobek.cz> | 2011-02-24 15:24:07 +0800 |
commit | 2713cdd64d428cfb678f0c404c0056b900ea6951 (patch) | |
tree | 476dbe311693deaa985e52574d244510e4aba49e | |
parent | 7d5b872c129822f56f480e890411e75870292a76 (diff) | |
download | mongodb-2713cdd64d428cfb678f0c404c0056b900ea6951.tar.gz |
Move patch to SConstruct to quilt.
-rw-r--r-- | debian/patches/2001_x64_install_to_lib.patch | 16 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/debian/patches/2001_x64_install_to_lib.patch b/debian/patches/2001_x64_install_to_lib.patch new file mode 100644 index 0000000..61954b6 --- /dev/null +++ b/debian/patches/2001_x64_install_to_lib.patch @@ -0,0 +1,16 @@ +Description: Install libs to /usr/lib, not /usr/lib64 + Closes: #588557 +Forwarded: not-needed +Author: Antonin Kral <A.Kral@sh.cvut.cz> +Last-Update: 2010-08-11 +--- a/SConstruct ++++ b/SConstruct +@@ -553,7 +553,7 @@ + + if os.uname()[4] == "x86_64" and not force32: + linux64 = True +- nixLibPrefix = "lib64" ++ nixLibPrefix = "lib" + env.Append( LIBPATH=["/usr/lib64" , "/lib64" ] ) + env.Append( LIBS=["pthread"] ) + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..49554c2 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +2001_x64_install_to_lib.patch |