aboutsummaryrefslogtreecommitdiff
path: root/deskutils
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2019-06-03 01:49:04 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2019-06-03 01:49:04 +0000
commitd4d86ac0f38f63956e04761d68204a10da9b89c6 (patch)
tree1e22726f3272c413dc4de95b0fa599fdcee24ed8 /deskutils
parentd80528d46092ffa1383f522c78cd8c4881b6e888 (diff)
downloadports-d4d86ac0f38f63956e04761d68204a10da9b89c6.tar.gz
ports-d4d86ac0f38f63956e04761d68204a10da9b89c6.zip
deskutils/goesimage: Fix bug in the user crontab manipulation procedure
Notes
Notes: svn path=/head/; revision=503340
Diffstat (limited to 'deskutils')
-rw-r--r--deskutils/goesimage/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/deskutils/goesimage/Makefile b/deskutils/goesimage/Makefile
index bd8931e91cfc..dc1b1139aaa3 100644
--- a/deskutils/goesimage/Makefile
+++ b/deskutils/goesimage/Makefile
@@ -3,6 +3,7 @@
PORTNAME= goesimage
DISTVERSION= 0.1.1-4
DISTVERSIONSUFFIX= -gce8f849
+PORTREVISION= 1
CATEGORIES= deskutils
MAINTAINER= yuri@FreeBSD.org
@@ -35,11 +36,11 @@ do-install:
${INSTALL_DATA} ${WRKDIR}/crontab ${STAGEDIR}${DATADIR}
@(echo "#!/bin/sh"; \
echo ""; \
- echo "crontab -l | ${GREP} -v '${PREFIX}/libexec/${PORTNAME}' | (cat ; cat ${DATADIR}/crontab) | crontab -"; \
+ echo "crontab -l | ${GREP} -v '${PREFIX}/bin/${PORTNAME}' | (cat ; cat ${DATADIR}/crontab) | crontab -"; \
) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-enable
@(echo "#!/bin/sh"; \
echo ""; \
- echo "crontab -l | ${GREP} -v '${PREFIX}/libexec/${PORTNAME}' | crontab -"; \
+ echo "crontab -l | ${GREP} -v '${PREFIX}/bin/${PORTNAME}' | crontab -"; \
) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-disable
@(echo "#!/bin/sh"; \
echo ""; \