Changeset 8656 for branches/gajim_0.11.1/data/emoticons
- Timestamp:
- 08/31/07 10:10:44 (15 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.1/data/emoticons/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.1/data/emoticons/Makefile.am
r7191 r8656 9 9 10 10 install-data-local: 11 @for d in $ (EMOTICONS_DIRS);do \12 if test -d $ $d;then \11 @for d in $$(cd $(srcdir); echo $(EMOTICONS_DIRS));do \ 12 if test -d $(srcdir)/$$d;then \ 13 13 echo " $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/data/emoticons/$$d"; \ 14 14 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/data/emoticons/$$d || exit 1; \ 15 15 fi; \ 16 16 done; \ 17 for f in $ (EMOTICONS_FILES);do \18 if test -f $ $f; then \19 echo " $(INSTALL_DATA) $ $f $(DESTDIR)$(pkgdatadir)/data/emoticons/$$f"; \20 $(INSTALL_DATA) $ $f $(DESTDIR)$(pkgdatadir)/data/emoticons/$$f || exit 1; \17 for f in $$(cd $(srcdir); echo $(EMOTICONS_FILES));do \ 18 if test -f $(srcdir)/$$f; then \ 19 echo " $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(pkgdatadir)/data/emoticons/$$f"; \ 20 $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(pkgdatadir)/data/emoticons/$$f || exit 1; \ 21 21 fi; \ 22 22 done; 23 23 24 24 dist-hook: 25 @for d in $ (EMOTICONS_DIRS);do \26 if test -d $ $d;then \25 @for d in $$(cd $(srcdir); echo $(EMOTICONS_DIRS));do \ 26 if test -d $(srcdir)/$$d;then \ 27 27 echo " $(mkdir_p) $(distdir)/$$d"; \ 28 28 $(mkdir_p) $(distdir)/$$d || exit 1; \ 29 29 fi; \ 30 30 done; \ 31 for f in $ (EMOTICONS_FILES);do \32 if test -f $ $f; then \31 for f in $$(cd $(srcdir); echo $(EMOTICONS_FILES));do \ 32 if test -f $(srcdir)/$$f; then \ 33 33 echo " cp -pR $(srcdir)/$$f $(distdir)/$$f"; \ 34 34 cp -pR $(srcdir)/$$f $(distdir)/$$f || exit 1; \
