We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68bc3c8 commit a8dd045Copy full SHA for a8dd045
Makefile
@@ -27,9 +27,13 @@ SNAPDIR= ${DISTPREFIX}-${SNAP}
27
SNAPFILE= ${SNAPDIR}.tar.xz
28
29
dist:
30
+ [ -e config.mk ] || ./configure
31
git archive --prefix=${DISTPREFIX}/ -o /tmp/${DISTFILETAR} ${GITREF}
32
tar -xpf /tmp/${DISTFILETAR} -C /tmp
33
+ # We need config.mk to build the icons - remove it once done
34
+ cp config.mk /tmp/${DISTPREFIX}
35
(cd /tmp/${DISTPREFIX}; make icons)
36
+ rm /tmp/${DISTPREFIX}/config.mk
37
rm -rf /tmp/${DISTPREFIX}/doc
38
tar -cvJpf ${DISTFILE} -C /tmp ${DISTPREFIX}
39
rm -rf /tmp/${DISTPREFIX} /tmp/${DISTFILETAR}
0 commit comments