Date: Mon, 3 Jun 2019 01:49:04 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503340 - head/deskutils/goesimage Message-ID: <201906030149.x531n4KT038327@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Jun 3 01:49:04 2019 New Revision: 503340 URL: https://svnweb.freebsd.org/changeset/ports/503340 Log: deskutils/goesimage: Fix bug in the user crontab manipulation procedure Modified: head/deskutils/goesimage/Makefile Modified: head/deskutils/goesimage/Makefile ============================================================================== --- head/deskutils/goesimage/Makefile Mon Jun 3 01:48:19 2019 (r503339) +++ head/deskutils/goesimage/Makefile Mon Jun 3 01:49:04 2019 (r503340) @@ -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 ""; \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906030149.x531n4KT038327>