File: acc

package info (click to toggle)
libqapt 3.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,348 kB
  • sloc: cpp: 11,268; sh: 22; makefile: 10
file content (11 lines) | stat: -rwxr-xr-x 250 bytes parent folder | download | duplicates (86)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

DEB_HOST_MULTIARCH=$(dpkg-architecture -qDEB_HOST_MULTIARCH)

for in_file in debian/*.acc.in; do
    out_file=${in_file%.in}
    sed 's/@@DEB_HOST_MULTIARCH@@/'"${DEB_HOST_MULTIARCH}"'/' \
        "${in_file}" > "${out_file}"
done

dh_acc