diff options
author | pawel <pawel@FreeBSD.org> | 2014-01-16 04:41:46 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2014-01-16 04:41:46 +0800 |
commit | 39b3ab46d28ac88326ce188eeb608e0487bc6a50 (patch) | |
tree | af2a94200fe7baccb18ef5bacb543ff07a015781 /multimedia/smtube | |
parent | 2d9b5ece281aad6defc0c6ee2f42c983aaac064d (diff) | |
download | freebsd-ports-gnome-39b3ab46d28ac88326ce188eeb608e0487bc6a50.tar.gz freebsd-ports-gnome-39b3ab46d28ac88326ce188eeb608e0487bc6a50.tar.zst freebsd-ports-gnome-39b3ab46d28ac88326ce188eeb608e0487bc6a50.zip |
Fix build after last commit, QMAKE_ARGS contains $(..) shell invocations
which are interpreted by gmake as variables, escape them.
MFH: 2014Q1
Diffstat (limited to 'multimedia/smtube')
-rw-r--r-- | multimedia/smtube/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/smtube/Makefile b/multimedia/smtube/Makefile index 91a912612c74..4a96d2d05047 100644 --- a/multimedia/smtube/Makefile +++ b/multimedia/smtube/Makefile @@ -23,7 +23,7 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS post-patch: - @${REINPLACE_CMD} -e 's|qmake|${QMAKE} ${QMAKE_ARGS}|' \ + @${REINPLACE_CMD} -e 's|qmake|${QMAKE} ${QMAKE_ARGS:S,\$(,\$\$(,g}|' \ -e 's|lrelease|${LRELEASE}|g' \ -e 's|PREFIX=/usr/local|PREFIX=${PREFIX}|g' \ -e 's|$$(PREFIX)/share/smtube|${DATADIR}|g' \ |