[Bug 289181] x11-wm/spectrwm: Update 3.6.0 => 3.7.0
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 289181] x11-wm/spectrwm: Update 3.6.0 => 3.7.0"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 30 Aug 2025 14:01:24 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=289181
Vladimir Druzenko <vvd@FreeBSD.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|New |In Progress
Assignee|ports-bugs@FreeBSD.org |vvd@FreeBSD.org
CC| |vvd@FreeBSD.org
--- Comment #2 from Vladimir Druzenko <vvd@FreeBSD.org> ---
Suggestion (optimization):
-.for f in ${CONFEXAMPLES}
- ${INSTALL_DATA} ${WRKSRC}/${f} \
- ${STAGEDIR}${EXAMPLESDIR}
-.endfor
-.for f in ${SCRIPTEXAMPLES}
- ${INSTALL_SCRIPT} ${WRKSRC}/${f} \
- ${STAGEDIR}${EXAMPLESDIR}
-.endfor
+ ${INSTALL_DATA} ${CONFEXAMPLES:C|^|${WRKSRC}/|} \
+ ${SCRIPTEXAMPLES:C|^|${WRKSRC}/|} \
+ ${STAGEDIR}${EXAMPLESDIR}
Run single INSTALL_DATA for all files - reduce IO and forks.
--
You are receiving this mail because:
You are the assignee for the bug.