pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

(www/revealjs) Fix sed problem \' -> ' (remove backslash)



Module Name:	pkgsrc-wip
Committed By:	Makoto Fujiwara (CF-SX3) <makoto%ki.nu@localhost>
Pushed By:	mef
Date:		Thu Apr 13 20:35:55 2023 +0900
Changeset:	c7cdef392cf62bca0ad885b350f96cbf501dae48

Modified Files:
	revealjs/Makefile

Log Message:
(www/revealjs) Fix sed problem \' -> ' (remove backslash)

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c7cdef392cf62bca0ad885b350f96cbf501dae48

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 revealjs/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diffs:
diff --git a/revealjs/Makefile b/revealjs/Makefile
index fc8e8551b7..8ce0281950 100644
--- a/revealjs/Makefile
+++ b/revealjs/Makefile
@@ -20,7 +20,7 @@ SUBST_FILES.path=	test/examples/*.html
 
 SUBST_SED.path=		-e "s|href=\"\.\.\/\.\.\/|href=\"${INSTALL_DIR}${PKGNAME}/|"
 SUBST_SED.path+=	-e   "s|src=\"\.\.\/\.\.\/|src=\"${INSTALL_DIR}${PKGNAME}/|"
-SUBST_SED.path+=	-e "s|src: \'\.\.\/\.\.\/|src: \'${INSTALL_DIR}${PKGNAME}/|"
+SUBST_SED.path+=	-e "s|src: '\.\.\/\.\.\/|src: '${INSTALL_DIR}${PKGNAME}/|"
 
 do-install:
 	mkdir ${DESTDIR}${PREFIX}/share/revealjs/


Home | Main Index | Thread Index | Old Index