File: bootstrap

package info (click to toggle)
system-config-printer 1.5.18-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,920 kB
  • sloc: python: 22,106; sh: 5,138; ansic: 1,516; xml: 811; makefile: 376; sed: 16
file content (13 lines) | stat: -rwxr-xr-x 427 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
autopoint --force
aclocal
automake --foreign --copy --add-missing
autoconf

# If this is a git repository, and git-merge-changelog is available,
# use it.
if [ -d .git ] && git --version 2>/dev/null >/dev/null && \
  git-merge-changelog 2>/dev/null >/dev/null; then
  git config merge.merge-changelog.name 'GNU-style ChangeLog merge driver'
  git config merge.merge-changelog.driver 'git-merge-changelog %O %A %B'
fi