diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-05-31 09:54:05 +0100 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-05-31 09:54:05 +0100 |
commit | 1b9ffa4563935bbd6b4dc0dec4ba5e085e355a12 (patch) | |
tree | 17ecbb17960ed0079a0f4a8d6472915e323f6011 | |
parent | 845575c3a5f4b6d1d4fa14fdce3908c2e1f7169b (diff) |
Bug still present in Debian 6.0.5
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ # Work around bug in Debian Squeeze - see https://github.com/sebbacon/alaveteli/pull/297#issuecomment-4101012 -if File.exist? "/etc/debian_version" and File.open("/etc/debian_version").read.strip == "6.0.4" +if File.exist? "/etc/debian_version" and File.open("/etc/debian_version").read.strip =~ /^6\.0\.[45]$/ if File.exist? "/lib/libuuid.so.1" require 'dl' DL::dlopen('/lib/libuuid.so.1') |