Skip to content

Commit 854bfc3

Browse files
committed
Release version 0.22
And fix some 'make distcheck' issues as well
1 parent c0492bb commit 854bfc3

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,4 @@ depcomp
8686
/modules/*/test-*.log
8787
/modules/*/test-*.trs
8888
/test/images
89-
/doc/cockpit.appdata.xml
90-
/doc/cockpit.desktop
9189

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
1717

1818
AC_INIT([Cockpit],
19-
[0.21],
19+
[0.22],
2020
2121
[cockpit],
2222
[http://www.cockpit-project.org/])

doc/Makefile-doc.am

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,37 @@
11

22
@INTLTOOL_XML_RULE@
33
appdatadir = $(datadir)/appdata
4-
appdata_DATA = $(srcdir)/$(appdata_in_files:.xml.in=.xml)
4+
appdata_DATA = doc/cockpit.appdata.xml
55
appdata_in_files = doc/cockpit.appdata.xml.in
66

77
@INTLTOOL_DESKTOP_RULE@
88
desktopdir = $(datadir)/applications
9-
desktop_in_files = $(srcdir)/doc/cockpit.desktop.in
10-
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
9+
desktop_in_files = doc/cockpit.desktop.in
10+
desktop_DATA = doc/cockpit.desktop
1111

1212
pixmapdir = $(datadir)/pixmaps
13-
pixmap_DATA = $(srcdir)/doc/cockpit.png
13+
pixmap_DATA = doc/cockpit.png
1414

1515
CLEANFILES += \
1616
cockpit.desktop \
1717
$(appdata_DATA) \
1818
$(desktop_DATA) \
19+
doc/.dirstamp \
1920
$(NULL)
2021

2122
EXTRA_DIST += \
2223
doc/cockpit-transport.svg \
2324
doc/cockpit-transport.png \
2425
$(appdata_in_files) \
2526
$(desktop_in_files) \
27+
$(pixmap_DATA) \
2628
$(NULL)
2729

30+
# Require that this directory exists
31+
BUILT_SOURCES += doc/.dirstamp
32+
doc/.dirstamp:
33+
$(AM_V_GEN) $(MKDIR_P) doc && : > doc/.dirstamp
34+
2835
render-images::
2936
inkscape --without-gui --export-area-page \
3037
--export-width=1280 --export-height=960 \

0 commit comments

Comments
 (0)