aboutsummaryrefslogtreecommitdiffstats
path: root/create_tarball.sh
blob: c053b300db90b6b685f622713fa2020ef79e0bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

intltoolize --force --copy

#don't remove .pot file on clean
sed -i -e '/^mostlyclean:/{n;s/$(GETTEXT_PACKAGE).pot //}' po/Makefile.in.in

#distribute .pot
sed -i -e 's/\(^DISTFILES = .*\)/\1 $(GETTEXT_PACKAGE).pot/' po/Makefile.in.in

autoreconf -vfi

./configure

make distcheck