Skip to content

Commit 85cc284

Browse files
committed
fix install
1 parent e19cd9b commit 85cc284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GNUmakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ ifeq ($(LOCALES),y)
400400
locales:
401401
$(foreach prog, $(INSTALLEES), \
402402
if [ -d "$(BASEDIR)/src/uu/$(prog)/locales" ]; then \
403-
mkdir -p "$(BUILDDIR)/locale/$(prog)"; \
403+
mkdir -p "$(BUILDDIR)/locales/$(prog)"; \
404404
for locale_file in "$(BASEDIR)"/src/uu/$(prog)/locales/*.ftl; do \
405405
$(INSTALL) -v "$$locale_file" "$(BUILDDIR)/locales/$(prog)/"; \
406406
done; \
@@ -411,7 +411,7 @@ locales:
411411
install-locales:
412412
$(foreach prog, $(INSTALLEES), \
413413
if [ -d "$(BASEDIR)/src/uu/$(prog)/locales" ]; then \
414-
mkdir -p "$(DESTDIR)$(DATAROOTDIR)/locale/$(prog)"; \
414+
mkdir -p "$(DESTDIR)$(DATAROOTDIR)/locales/$(prog)"; \
415415
for locale_file in "$(BASEDIR)"/src/uu/$(prog)/locales/*.ftl; do \
416416
$(INSTALL) -v "$$locale_file" "$(DESTDIR)$(DATAROOTDIR)/locales/$(prog)/"; \
417417
done; \

0 commit comments

Comments
 (0)