summaryrefslogtreecommitdiff
path: root/php/lib
diff options
context:
space:
mode:
authornewhook <matthew.newhook@gmail.com>2015-04-22 17:41:42 -0230
committernewhook <matthew.newhook@gmail.com>2015-04-22 17:41:42 -0230
commit71a49e33a43de35a0fddf5f0808b3b06f715d46b (patch)
tree972cff5231b1e8e4825c3961a428b2a20e2a223b /php/lib
parentRPM build fixes (diff)
downloadice-71a49e33a43de35a0fddf5f0808b3b06f715d46b.tar.bz2
ice-71a49e33a43de35a0fddf5f0808b3b06f715d46b.tar.xz
ice-71a49e33a43de35a0fddf5f0808b3b06f715d46b.zip
ICE-6433: config/makedepend.py: replace with sed?
Diffstat (limited to 'php/lib')
-rw-r--r--php/lib/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/php/lib/Makefile b/php/lib/Makefile
index e46fbc6ec47..e672ab05f2f 100644
--- a/php/lib/Makefile
+++ b/php/lib/Makefile
@@ -122,42 +122,42 @@ Ice/%.php: $(slicedir)/Ice/%.ice $(SLICE2PHP) $(SLICEPARSERLIB)
$(SLICE2PHP) --output-dir Ice $(SLICE2PHPFLAGS) $<
@mkdir -p .depend
@$(SLICE2PHP) --output-dir Ice $(SLICE2PHPFLAGS) --depend $< \
- | $(top_srcdir)/../config/makedepend.py "Ice/" > .depend/Ice_$(*F).ice.d
+ | sed 's/\(.*: \\\)/Ice\/\1/' > .depend/Ice_$(*F).ice.d
Glacier2/%.php: $(slicedir)/Glacier2/%.ice $(SLICE2PHP) $(SLICEPARSERLIB)
@mkdir -p $(notdir $(<D))
$(SLICE2PHP) --output-dir Glacier2 $(SLICE2PHPFLAGS) $<
@mkdir -p .depend
@$(SLICE2PHP) --output-dir Glacier2 $(SLICE2PHPFLAGS) --depend $< \
- | $(top_srcdir)/../config/makedepend.py "Glacier2/" > .depend/Glacier2_$(*F).ice.d
+ | sed 's/\(.*: \\\)/Glacier2\/\1/' > .depend/Glacier2_$(*F).ice.d
IceBox/%.php: $(slicedir)/IceBox/%.ice $(SLICE2PHP) $(SLICEPARSERLIB)
@mkdir -p $(notdir $(<D))
$(SLICE2PHP) --output-dir IceBox $(SLICE2PHPFLAGS) $<
@mkdir -p .depend
@$(SLICE2PHP) --output-dir IceBox $(SLICE2PHPFLAGS) --depend $< \
- | $(top_srcdir)/../config/makedepend.py "IceBox/" > .depend/IceBox_$(*F).ice.d
+ | sed 's/\(.*: \\\)/IceBox\/\1/' > .depend/IceBox_$(*F).ice.d
IceGrid/%.php: $(slicedir)/IceGrid/%.ice $(SLICE2PHP) $(SLICEPARSERLIB)
@mkdir -p $(notdir $(<D))
$(SLICE2PHP) --output-dir IceGrid $(SLICE2PHPFLAGS) $<
@mkdir -p .depend
@$(SLICE2PHP) --output-dir IceGrid $(SLICE2PHPFLAGS) --depend $< \
- | $(top_srcdir)/../config/makedepend.py "IceGrid/" > .depend/IceGrid_$(*F).ice.d
+ | sed 's/\(.*: \\\)/IceGrid\/\1/' > .depend/IceGrid_$(*F).ice.d
IcePatch2/%.php: $(slicedir)/IcePatch2/%.ice $(SLICE2PHP) $(SLICEPARSERLIB)
@mkdir -p $(notdir $(<D))
$(SLICE2PHP) --output-dir IcePatch2 $(SLICE2PHPFLAGS) $<
@mkdir -p .depend
@$(SLICE2PHP) --output-dir IcePatch2 $(SLICE2PHPFLAGS) --depend $< \
- | $(top_srcdir)/../config/makedepend.py "IcePatch2/" > .depend/IcePatch2_$(*F).ice.d
+ | sed 's/\(.*: \\\)/IcePatch2\/\1/' > .depend/IcePatch2_$(*F).ice.d
IceStorm/%.php: $(slicedir)/IceStorm/%.ice $(SLICE2PHP) $(SLICEPARSERLIB)
@mkdir -p $(notdir $(<D))
$(SLICE2PHP) --output-dir $(notdir $(<D)) $(SLICE2PHPFLAGS) $<
@mkdir -p .depend
@$(SLICE2PHP) --output-dir IceStorm $(SLICE2PHPFLAGS) --depend $< \
- | $(top_srcdir)/../config/makedepend.py "IceStorm/" > .depend/IceStorm_$(*F).ice.d
+ | sed 's/\(.*: \\\)/IceStorm\/\1/' > .depend/IceStorm_$(*F).ice.d
install:: $(ALL_SRCS)
@echo "Installing generated code"