mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-29 08:36:45 +01:00
fix for problem with installing headers on FreeBSD, where install doesn't understand -D. Thanks to Alex Ott.
This commit is contained in:
parent
ebbd739051
commit
de21459681
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ install-data-local:
|
|||
@echo "Installing include files to $(includedir)"
|
||||
@echo "------------------------------------------------------------"
|
||||
for inc in `cd $(srcdir)/include && find . -type f -print | grep -v \.svn`; \
|
||||
do $(INSTALL_HEADER) -D "$(srcdir)/include/$$inc" "$(includedir)/$$inc"; \
|
||||
do mkdir -p "`dirname \"$(includedir)/$$inc\"`"; $(INSTALL_HEADER) "$(srcdir)/include/$$inc" "$(includedir)/$$inc"; \
|
||||
done
|
||||
|
||||
uninstall-local:
|
||||
|
|
Loading…
Add table
Reference in a new issue