File: acc

package info (click to toggle)
libaccounts-glib 1.26-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 944 kB
  • sloc: ansic: 11,276; xml: 1,175; python: 72; sh: 7; makefile: 6
file content (11 lines) | stat: -rwxr-xr-x 250 bytes parent folder | download | duplicates (84)
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