diff options
author | linimon <linimon@FreeBSD.org> | 2006-01-22 12:28:39 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2006-01-22 12:28:39 +0800 |
commit | 387f2b2a719663bbe94a56440f917dad7e50cf08 (patch) | |
tree | 2444b18a68a2c4f9f4eab7c2841e9d5a54906986 /Mk | |
parent | 51400142b4737654edf23e69357af615516f53bd (diff) | |
download | freebsd-ports-gnome-387f2b2a719663bbe94a56440f917dad7e50cf08.tar.gz freebsd-ports-gnome-387f2b2a719663bbe94a56440f917dad7e50cf08.tar.zst freebsd-ports-gnome-387f2b2a719663bbe94a56440f917dad7e50cf08.zip |
Emergency fix to the @dirrmtry code.
PR: ports/92128
Submitted by: edwin
Reviewed by: kris, linimon
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 7b37f97ba128..e106b393a9b1 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -5002,8 +5002,8 @@ generate-plist: ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${PLIST} >> ${TMPPLIST}; \ fi .for reinplace in ${PLIST_REINPLACE} -.if defined(PLIST_REINPLACE_${reinplace}) - @${SED} -e '${PLIST_REINPLACE_${reinplace:U}}' ${PLIST} >> ${TMPPLIST} +.if defined(PLIST_REINPLACE_${reinplace:U}) + @${SED} -i "" -e '${PLIST_REINPLACE_${reinplace:U}}' ${TMPPLIST} .endif .endfor |