Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 132706 | Differences between
and this patch

Collapse All | Expand All

(-)./make/generic-rules.make (-1 / +1 lines)
Lines 7-13 $(outdir)/%.ly: %.lym4 Link Here
7
7
8
$(outdir)/%: %.in
8
$(outdir)/%: %.in
9
	rm -f $@
9
	rm -f $@
10
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
10
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
11
11
12
12
13
13
(-)./stepmake/stepmake/python-module-rules.make (-1 / +1 lines)
Lines 9-14 $(outdir)/%.pyo: $(outdir)/%.py Link Here
9
	$(PYTHON) -O -c 'import py_compile; py_compile.compile ("$<")'
9
	$(PYTHON) -O -c 'import py_compile; py_compile.compile ("$<")'
10
10
11
$(outdir)/%.py: %.py $(config_make)
11
$(outdir)/%.py: %.py $(config_make)
12
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
12
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
13
	chmod 755 $@
13
	chmod 755 $@
14
14
(-)./stepmake/stepmake/script-rules.make (-6 / +6 lines)
Lines 1-25 Link Here
1
1
2
$(outdir)/%: %.pl $(config_make)  $(depth)/VERSION
2
$(outdir)/%: %.pl $(config_make)  $(depth)/VERSION
3
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
3
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
4
	chmod 755 $@
4
	chmod 755 $@
5
5
6
$(outdir)/%: %.bash $(config_make) $(depth)/VERSION
6
$(outdir)/%: %.bash $(config_make) $(depth)/VERSION
7
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
7
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
8
	chmod 755 $@
8
	chmod 755 $@
9
9
10
$(outdir)/%: %.scm $(config_make) $(depth)/VERSION
10
$(outdir)/%: %.scm $(config_make) $(depth)/VERSION
11
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
11
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
12
	chmod 755 $@
12
	chmod 755 $@
13
13
14
$(outdir)/%: %.expect $(config_make) $(depth)/VERSION
14
$(outdir)/%: %.expect $(config_make) $(depth)/VERSION
15
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
15
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
16
	chmod 755 $@
16
	chmod 755 $@
17
17
18
$(outdir)/%: %.sh $(config_make) $(depth)/VERSION
18
$(outdir)/%: %.sh $(config_make) $(depth)/VERSION
19
	cat $< | sed $(sed-atfiles)$(sed-atvariables) > $@
19
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
20
	chmod 755 $@
20
	chmod 755 $@
21
21
22
$(outdir)/%: %.py $(config_make) $(depth)/VERSION
22
$(outdir)/%: %.py $(config_make) $(depth)/VERSION
23
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
23
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
24
	chmod 755 $@
24
	chmod 755 $@
25
25
(-)./stepmake/stepmake/substitute-rules.make (-1 / +1 lines)
Lines 2-7 Link Here
2
# config_make dep isn't working. Why?
2
# config_make dep isn't working. Why?
3
$(outdir)/%: %.in $(config_make) $(depth)/VERSION
3
$(outdir)/%: %.in $(config_make) $(depth)/VERSION
4
	rm -f $@
4
	rm -f $@
5
	cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@
5
	cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@
6
6
7
7

Return to bug 132706