~kernevil/ubuntu/trusty/bind9/sdlz-hmac-keys

« back to all changes in this revision

Viewing changes to make/mkdep.in

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, Matthew Grant, LaMont Jones
  • Date: 2012-10-29 08:37:49 UTC
  • mfrom: (1.9.2)
  • Revision ID: package-import@ubuntu.com-20121029083749-r9inpzl0yuj9xdlu
Tags: 1:9.8.4.dfsg-1
[Matthew Grant]

* Turn off dlopen as it was causing test compile failures.
* Add missing library .postrm files for debhelper

[LaMont Jones]

* New upstream version
* soname fixup
* Ack NMUs

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
else
141
141
    @MKDEPCC@ @MKDEPCFLAGS@ ${newargs} |
142
142
    sed "
143
 
        s; \./; ;g
 
143
        s; \\./; ;g
 
144
        s; \\\\; ;g
144
145
        @LIBTOOL_MKDEP_SED@
145
146
        $SED" |
146
 
    awk '{
147
 
        if ($1 != prev) {
 
147
    awk '$1 ~ /:$/ {
148
148
                if (rec != "")
149
 
                        print rec;
150
 
                rec = $0;
151
 
                prev = $1;
152
 
        }
153
 
        else {
154
 
                if (length(rec $2) > 78) {
155
 
                        print rec;
156
 
                        rec = $0;
157
 
                }
 
149
                         print rec;
 
150
                if (NF == 1)
 
151
                        rec = $1;
158
152
                else
159
 
                        rec = rec " " $2
160
 
        }
161
 
    }
 
153
                        rec = $1 " " $2;
 
154
                for (i = 3; i <= NF; i++) {
 
155
                        if (length(rec $i) > 76) {
 
156
                                print rec " \\";
 
157
                                rec = "    " $i;
 
158
                        } else {
 
159
                                rec = rec " " $i;
 
160
                        }
 
161
                }
 
162
                next;
 
163
        }
 
164
        {
 
165
                for (i = 1; i <= NF; i++) {
 
166
                        if (length(rec $i) > 76) {
 
167
                                print rec, "\\";
 
168
                                rec =  "    " $i;
 
169
                        } else {
 
170
                                rec = rec " " $i;
 
171
                        }
 
172
                }
 
173
        }
162
174
    END {
163
175
        print rec
164
176
    }' >> $TMP