File: bootstrap

package info (click to toggle)
system-config-printer 1.2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 9,808 kB
  • ctags: 1,909
  • sloc: python: 18,200; sh: 4,240; ansic: 1,100; makefile: 290; xml: 152
file content (14 lines) | stat: -rwxr-xr-x 464 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
intltoolize --force --copy
aclocal
touch ChangeLog # keep automake happy
automake --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