Commit 35a6dc53 authored by unknown's avatar unknown

Fixed a problem with installing, for IRIX 'install', paths would

be wrong and install would fail.


sql/share/Makefile.am:
  When installing, should cd into the directory where the files 
  are coming from.  This caused a problem with one of our customers
  using an SGI IRIX machine, I'd guess that IRIX uses some version
  of install that doesn't disregard the path of the source file
  when copying the files.
parent 462f6c94
...@@ -16,7 +16,7 @@ install-data-local: ...@@ -16,7 +16,7 @@ install-data-local:
$(DESTDIR)$(pkgdatadir)/$$lang/errmsg.txt; \ $(DESTDIR)$(pkgdatadir)/$$lang/errmsg.txt; \
done done
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/charsets $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/charsets
(for f in Index README "*.conf"; \ (cd $(srcdir)/charsets; for f in Index README "*.conf"; \
do \ do \
$(INSTALL_DATA) $(srcdir)/charsets/$$f $(DESTDIR)$(pkgdatadir)/charsets/; \ $(INSTALL_DATA) $$f $(DESTDIR)$(pkgdatadir)/charsets/; \
done) done)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment