]> git.pld-linux.org Git - packages/glibc.git/commitdiff
- helper program to kill interferring glibc lib dirs during glibc upgrade
authorElan Ruusamäe <glen@pld-linux.org>
Wed, 29 Dec 2004 11:59:07 +0000 (11:59 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    glibc-LD-path.c -> 1.1

glibc-LD-path.c [new file with mode: 0644]

diff --git a/glibc-LD-path.c b/glibc-LD-path.c
new file mode 100644 (file)
index 0000000..2470903
--- /dev/null
@@ -0,0 +1,95 @@
+/*
+ * Copyright (c) 2004 Elan Ruusamäe <glen@pld-linux.org>.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *       This product includes software developed by Elan Ruusamäe
+ * 4. Neither the name of the author nor the names of any co-contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY ELAN RUUSAMÄE AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+/*
+ * Usage
+ * ~~~~~
+ *
+ * This simple program is aimed to be used as a workaround when installing over
+ * glibc which has placed glibc.so into /lib/i686.
+ *
+ * For example, in glibc.spec:
+ *
+ * %post -p /sbin/postshell
+ * /sbin/glibc-postrm /%{_lib}/i686
+ *
+ * Patches and bugreports are welcome, direct them to Elan Ruusamäe
+ * <glen@pld-linux.org>.
+ */
+
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <limits.h>
+#include <errno.h>
+#include <string.h>
+#include <stdlib.h>
+
+int main (int argc, char *argv[])
+{
+struct stat st;
+int i, rv = 0;
+
+       if (argc == 1) {
+               fprintf(stderr, "This program is intended to be used by glibc postinstall stage.\n");
+               exit(1);
+       }
+
+       for (i = 1; i < argc; i++) {
+               char *path = argv[i];
+
+               if (stat(path, &st) == -1) {
+                       // doesn't exist. good. next please.
+                       if (errno == ENOENT) {
+                               continue;
+                       }
+                       perror("stat");
+                       exit(1);
+               }
+
+               if (S_ISDIR(st.st_mode)) {
+                       char p[strlen(path) + sizeof(".rpmsave") + 1];
+
+                       sprintf(p, "%s.rpmsave", path);
+                       fprintf(stderr, "Renaming %s to %s\n", path, p);
+                       if (rename(path, p) == -1) {
+                               perror("rename");
+                               rv = 1;
+                       }
+               }
+       }
+
+       exit(rv);
+}
+
This page took 0.149131 seconds and 4 git commands to generate.