diff options
| author | Tijl Coosemans <tijl@FreeBSD.org> | 2026-06-12 10:07:26 +0000 |
|---|---|---|
| committer | Tijl Coosemans <tijl@FreeBSD.org> | 2026-06-30 20:03:57 +0000 |
| commit | d26c01fde278a05fcc2c9c8f865055db361083e3 (patch) | |
| tree | faafa982da46e65787228de32758f2092cbe729d | |
| parent | ddda2c59e6aa72f86e9fa13ec9d8d4548f72b020 (diff) | |
games/xblast: Fix renaming of a file with a ISO8859-1 encoded "î"
PR: 295945
Exp-run by: antoine
| -rw-r--r-- | games/xblast/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/xblast/Makefile b/games/xblast/Makefile index adb7da6d30d7..f91f164f9627 100644 --- a/games/xblast/Makefile +++ b/games/xblast/Makefile @@ -54,7 +54,8 @@ SOUND_DISTFILES= musics-${MUSICS_DATE}${EXTRACT_SUFX}:musics \ SOUND_CONFIGURE_ENABLE= sound post-extract: - -@${MV} ${WRKDIR}/levels-${LEVELS_DATE}/reconstruct?on2.xal ${WRKDIR}/levels-${LEVELS_DATE}/reconstruction2.xal + @${MV} $$'${WRKDIR}/levels-${LEVELS_DATE}/reconstruct\xeeon2.xal' \ + ${WRKDIR}/levels-${LEVELS_DATE}/reconstruction2.xal post-patch: @${TOUCH} -r ${WRKSRC}/configure ${WRKSRC}/aclocal.m4 |
