diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-08-03 18:00:45 +0200 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-08-03 18:02:15 +0200 |
| commit | 30e1773fdef42cb509bf75e9fa09472e77a333de (patch) | |
| tree | 5e94cd74df8e0f0bdf0f0cc5d65a66917a88e8b1 /share/monetdef | |
| parent | 8b3bd5a2b571e2681c96dbe5b4a04529ef0d7f53 (diff) | |
locales: fix abuse of bsd.dirs.mk
the way SAMEDIRS was defined was an abuse of bsd.dirs.mk resulting in
all the directory to be created in one single command, but DESTDIR is
only prepend once on the first element of the list
Switch to the properway to use bsd.dirs.mk
Diffstat (limited to 'share/monetdef')
| -rw-r--r-- | share/monetdef/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/monetdef/Makefile b/share/monetdef/Makefile index f0b34998f4bd..bec0b78d9433 100644 --- a/share/monetdef/Makefile +++ b/share/monetdef/Makefile @@ -129,9 +129,9 @@ SAME+= ko_KR.eucKR ko_KR.CP949 # legacy (same charset) FILES= ${LOCALES:S/$/.out/} CLEANFILES= ${FILES} -DIRS+= SAMEDIRS .for f t in ${SAME} -SAMEDIRS+= ${LOCALEDIR}/$t +DIRS+= LOCALEDIR_$t +LOCALEDIR_$t= ${LOCALEDIR}/$t SYMLINKS+= ../$f/${FILESNAME} \ ${LOCALEDIR}/$t/${FILESNAME} .endfor |
