diff options
author | Wez Furlong <wez@php.net> | 2003-08-31 01:44:45 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-08-31 01:44:45 +0000 |
commit | b0d74a9485d32df9b2dc33b6e7d4b786220070ba (patch) | |
tree | e09a002296dbc179815bc82206f7fe9ebfebcd09 /scripts | |
parent | c9a69abe2541a02529b7c431b1b9057fe5b34df4 (diff) | |
download | php-git-b0d74a9485d32df9b2dc33b6e7d4b786220070ba.tar.gz |
install sqlite headers with the rest of php.
We only really need sqlite.h, but our build system doesn't provide for
installation of a single header file
(at least not that I can see)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.frag | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/Makefile.frag b/scripts/Makefile.frag index bbecfc71f5..7129e455f8 100644 --- a/scripts/Makefile.frag +++ b/scripts/Makefile.frag @@ -34,7 +34,8 @@ HEADER_DIRS = \ main/streams \ ext/mbstring \ ext/pgsql \ - regex + regex \ + ext/sqlite/libsqlite/src install-headers: -@for i in $(HEADER_DIRS); do \ |