Chromium Code Reviews| Index: third_party/xdg-utils/scripts/Makefile.in |
| =================================================================== |
| --- third_party/xdg-utils/scripts/Makefile.in (revision 57942) |
| +++ third_party/xdg-utils/scripts/Makefile.in (working copy) |
| @@ -66,7 +66,9 @@ |
| $(MKDIR) $(DESTDIR)$(mandir) |
| $(MKDIR) $(DESTDIR)$(mandir)/man1 |
| for x in $(MANPAGES) ; do \ |
| - $(INSTALL_DATA) $$x $(DESTDIR)$(mandir)/man1 ; \ |
| + if [ -f $$x ]; then \ |
| + $(INSTALL_DATA) $$x $(DESTDIR)$(mandir)/man1 ; \ |
| + fi ; \ |
| done |
| uninstall: |