]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
- added /etc/ld.so.conf.d
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 12 Dec 2005 16:23:55 +0000 (16:23 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- typo in group fix
- skip sysconfig/wmstyle %config enforcement

Changed files:
    adapter.awk -> 1.231

adapter.awk

index 8b03e7c4b2f81d80dc287cc96b5e0fb55b09ec67..10f5852f91df32d9b99f7da6227739d11a98e2da 100644 (file)
@@ -565,6 +565,7 @@ preamble == 1 {
                sub(/^X11\/XFree86$/, "X11", Grupa)
                sub(/^Applications\/Compilers$/, "Development/Languages", Grupa)
                sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", Grupa)
+               sub(/^Networking\/Deamons$/, "Networking/Daemons", Grupa)
 
                print "Group:\t\t" Grupa
                if (Grupa ~ /^X11/ && x11 == 0) # Is it X11 application?
@@ -872,6 +873,8 @@ function use_macros()
                        continue;
                if ($c ~ sysconfdir "/{?X11")
                        continue;
+               if ($c ~ sysconfdir "/{?ld.so.conf.d")
+                       continue;
                if ($c ~ sysconfdir "/{?httpd") # temp
                        continue;
                gsub(sysconfdir, "%{_sysconfdir}", $c)
@@ -1038,7 +1041,7 @@ function use_files_macros(        i, n, t, a)
        # /etc/sysconfig files
        # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
        # attr not required, allow default 644 attr
-       if (!/network-scripts/) {
+       if (!/network-scripts/ && !/%dir/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
                if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace\)/) {
                        gsub("%config", "%config(noreplace)")
                }
This page took 0.239688 seconds and 4 git commands to generate.