]> git.sur5r.net Git - openldap/commitdiff
Fix typo
authorKurt Zeilenga <kurt@openldap.org>
Mon, 4 Sep 2000 17:49:43 +0000 (17:49 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 4 Sep 2000 17:49:43 +0000 (17:49 +0000)
libraries/liblunicode/Makefile.in

index a899671fb6b21d5e8a1e04697cffcd146b760156..641054ca7b91a3dfc7bc270a7542f3d7713a1255 100644 (file)
@@ -23,9 +23,12 @@ ucgendat: $(LIBRARY) ucgendat.o
        $(LTLINK) $(LDFLAGS) -o $@ ucgendat.o $(LIBS)
        ./ucgendat $(srcdir)/UnicodeData.txt
 
+DATFILES = case.dat cmbcl.dat ctype.dat decomp.dat num.dat
+
 install-local: $(PROGRAMS) FORCE
        -$(MKDIR) $(DESTDIR)$(datadir)/ucdata
-       @for i $(DATFILES); do \
+       @for i in $(DATFILES); do \
+               echo $(INSTALL) $(INSTALLFLAGS) -m 644 $$i $(DESTDIR)$(datadir)/ucdata; \
                $(INSTALL) $(INSTALLFLAGS) -m 644 $$i $(DESTDIR)$(datadir)/ucdata; \
        done