Skip to content

Commit

Permalink
workaround for problem on Solaris: shell tries to parse "for i in ;" …
Browse files Browse the repository at this point in the history
…and fails
  • Loading branch information
tony2001 committed Apr 5, 2006
1 parent e931d97 commit 96682ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.global
Expand Up @@ -44,13 +44,13 @@ install-modules: build-modules

install-headers:
-@if test "$(INSTALL_HEADERS)"; then \
for i in $(INSTALL_HEADERS); do \
for i in `echo $(INSTALL_HEADERS)`; do \
i=`$(top_srcdir)/build/shtool path -d $$i`; \
paths="$$paths $(INSTALL_ROOT)$(phpincludedir)/$$i"; \
done; \
$(mkinstalldirs) $$paths && \
echo "Installing header files: $(INSTALL_ROOT)$(phpincludedir)/" && \
for i in $(INSTALL_HEADERS); do \
for i in `echo $(INSTALL_HEADERS)`; do \
if test "$(PHP_PECL_EXTENSION)"; then \
src=`echo $$i | $(SED) -e "s#ext/$(PHP_PECL_EXTENSION)/##g"`; \
else \
Expand Down

0 comments on commit 96682ed

Please sign in to comment.