/* Automatic generation of BuildRequires dependencies for rpmbuild.
* Copyright (C) 2008 Red Hat Inc.
* Written by Richard W.M. Jones <rjones@redhat.com>
+ * Patches from Rajeesh K Nambiar <rajeeshknambiar@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
void *dl;
dl = dlopen ("/lib64/libc.so.6", RTLD_LAZY|RTLD_LOCAL);
+ if (dl == NULL) // Try '/lib/' also
+ dl = dlopen("/lib/libc.so.6", RTLD_LAZY|RTLD_LOCAL);
if (dl == NULL) {
fprintf (stderr, "%s\n", dlerror ());
abort ();