]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
version 0.13
authorkura <kura@pld-linux.org>
Mon, 28 Feb 2000 16:34:29 +0000 (16:34 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Fixed stupid bug in group translating: s/~/==/

Changed files:
    adapter.awk -> 1.24

adapter.awk

index 3f9ecb60b1bfe69dc1f4b3f8ea919ba143cc47df..46db8f0856ac0df87f47ee516bdfdf29d5af10cb 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/awk -f
 #
-# This is adapter v0.12. Adapter adapts .spec files for PLD.
+# This is adapter v0.13. Adapter adapts .spec files for PLD.
 # Copyright (C) 1999 Micha³ Kuratczyk <kura@pld.org.pl>
 
 BEGIN {
@@ -322,7 +322,7 @@ function translate_group(group)
                        return
                }
                
-               if (line ~ group) {
+               if (line == group) {
                        found = 1
                        continue
                }
This page took 0.04445 seconds and 4 git commands to generate.