summaryrefslogtreecommitdiff
path: root/distrib/zaurus
diff options
context:
space:
mode:
authorUwe Stuehler <uwe@cvs.openbsd.org>2005-07-14 02:59:31 +0000
committerUwe Stuehler <uwe@cvs.openbsd.org>2005-07-14 02:59:31 +0000
commit162470a4e9434154f4574ab37f2b81dcb1ae00fb (patch)
tree3842608f559691e3f43259aa0b08d2525477d31d /distrib/zaurus
parent86913651b34d86f3a4d7d9fc20f153992d7e5db2 (diff)
Must strip comments from bootbsd.desktop before packaging; found by david@
Diffstat (limited to 'distrib/zaurus')
-rw-r--r--distrib/zaurus/ipk/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/distrib/zaurus/ipk/Makefile b/distrib/zaurus/ipk/Makefile
index fd68cfe613b..5d3a3beb540 100644
--- a/distrib/zaurus/ipk/Makefile
+++ b/distrib/zaurus/ipk/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.8 2005/07/12 06:33:41 uwe Exp $
+# $OpenBSD: Makefile,v 1.9 2005/07/14 02:59:30 uwe Exp $
TOP= ${.CURDIR}/..
IPK= openbsd${OSrev}_arm.ipk
@@ -23,8 +23,9 @@ ${IPK}:
install -o ${BINOWN} -g ${BINGRP} -m 755 ${.CURDIR}/bootbsd \
${.OBJDIR}/data/opt/QtPalmtop/bin
- install -o ${BINOWN} -g ${BINGRP} -m 755 ${.CURDIR}/bootbsd.desktop \
- ${.OBJDIR}/data/opt/QtPalmtop/apps/Applications
+ grep -v '^#' ${.CURDIR}/bootbsd.desktop > ${.OBJDIR}/bootbsd.desktmp
+ install -o ${BINOWN} -g ${BINGRP} -m 755 ${.OBJDIR}/bootbsd.desktmp \
+ ${.OBJDIR}/data/opt/QtPalmtop/apps/Applications/bootbsd.desktop
uudecode < ${.CURDIR}/bootbsd.png.uu
install -o ${BINOWN} -g ${BINGRP} -m 755 ${.OBJDIR}/bootbsd.png \
${.OBJDIR}/data/opt/QtPalmtop/pics
@@ -64,7 +65,7 @@ install: ${IPK} Packages
clean cleandir:
rm -rf data control ${IPK} debian-binary control.tar.gz data.tar.gz \
- bootbsd.png Packages
+ bootbsd.desktmp bootbsd.png Packages
.include <bsd.prog.mk>
.include <bsd.subdir.mk>