Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
2009-03-16 Mike Kestner <mkestner@novell.com>
Browse files Browse the repository at this point in the history
	* Makefile.include: parallel make fix.
	* gconf/GConf/Makefile.am: parallel make fix.
	* gconf/GConf.PropertyEditors/Makefile.am: parallel make fix.
	Patch from Peter Alfredsen.  [Fixes #483251]

svn path=/trunk/gnome-sharp/; revision=129503
  • Loading branch information
mkestner committed Mar 16, 2009
1 parent d940edb commit c310878
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 18 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
2009-03-16 Mike Kestner <mkestner@novell.com>

* Makefile.include: parallel make fix.
* gconf/GConf/Makefile.am: parallel make fix.
* gconf/GConf.PropertyEditors/Makefile.am: parallel make fix.
Patch from Peter Alfredsen. [Fixes #483251]

2009-03-03 Mike Kestner <mkestner@novell.com>

* bootstrap-2.24: bump version to 2.24.1 and tag.
Expand Down
11 changes: 5 additions & 6 deletions Makefile.include
Expand Up @@ -46,12 +46,11 @@ $(SNK): $(top_srcdir)/$(SNK)
AssemblyInfo.cs: $(top_builddir)/AssemblyInfo.cs
cp $(top_builddir)/AssemblyInfo.cs .

$(POLICY_ASSEMBLIES): $(top_builddir)/policy.config $(SNK)
@for i in $(POLICY_VERSIONS); do \
echo "Creating policy.$$i.$(ASSEMBLY)"; \
sed -e "s/@ASSEMBLY_NAME@/$(ASSEMBLY_NAME)/" -e "s/@POLICY@/$$i/" $(top_builddir)/policy.config > policy.$$i.config; \
$(AL) -link:policy.$$i.config -out:policy.$$i.$(ASSEMBLY) -keyfile:$(SNK); \
done
policy.%.config: $(top_builddir)/policy.config
sed -e "s/@ASSEMBLY_NAME@/$(ASSEMBLY_NAME)/" -e "s/@POLICY@/$*/" $(top_builddir)/policy.config > $@

$(POLICY_ASSEMBLIES) : policy.%.$(ASSEMBLY): policy.%.config $(SNK)
$(AL) -link:policy.$*.config -out:$@ -keyfile:$(SNK)

build_sources = $(patsubst %, $(srcdir)/%, $(sources)) AssemblyInfo.cs
build_references = $(GTKSHARP_LIBS) $(patsubst %, /r:%, $(references)) $(MONO_CAIRO_LIBS)
Expand Down
11 changes: 5 additions & 6 deletions gconf/GConf.PropertyEditors/Makefile.am
Expand Up @@ -53,12 +53,11 @@ $(ASSEMBLY): $(build_sources) gtk-sharp.snk
$(CSC) $(CSFLAGS) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
$(GAPI_CDECL_INSERT)

$(POLICY_ASSEMBLIES): $(top_builddir)/policy.config gtk-sharp.snk
@for i in $(POLICY_VERSIONS); do \
echo "Creating policy.$$i.$(ASSEMBLY)"; \
sed -e "s/@ASSEMBLY_NAME@/$(ASSEMBLY_NAME)/" -e "s/@POLICY@/$$i/" $(top_builddir)/policy.config > policy.$$i.config; \
$(AL) -link:policy.$$i.config -out:policy.$$i.$(ASSEMBLY) -keyfile:gtk-sharp.snk; \
done
policy.%.config: $(top_builddir)/policy.config
sed -e "s/@ASSEMBLY_NAME@/$(ASSEMBLY_NAME)/" -e "s/@POLICY@/$*/" $(top_builddir)/policy.config > $@

$(POLICY_ASSEMBLIES) : policy.%.$(ASSEMBLY): policy.%.config gtk-sharp.snk
$(AL) -link:policy.$*.config -out:$@ -keyfile:gtk-sharp.snk

install-data-local:
@if test -n '$(TARGET)'; then \
Expand Down
11 changes: 5 additions & 6 deletions gconf/GConf/Makefile.am
Expand Up @@ -49,12 +49,11 @@ $(ASSEMBLY): $(build_sources) gtk-sharp.snk AssemblyInfo.cs
$(CSC) $(CSFLAGS) /out:$(ASSEMBLY) /target:library $(references) $(build_sources) AssemblyInfo.cs
$(GAPI_CDECL_INSERT)

$(POLICY_ASSEMBLIES): $(top_builddir)/policy.config gtk-sharp.snk
@for i in $(POLICY_VERSIONS); do \
echo "Creating policy.$$i.$(ASSEMBLY)"; \
sed -e "s/@ASSEMBLY_NAME@/$(ASSEMBLY_NAME)/" -e "s/@POLICY@/$$i/" $(top_builddir)/policy.config > policy.$$i.config; \
$(AL) -link:policy.$$i.config -out:policy.$$i.$(ASSEMBLY) -keyfile:gtk-sharp.snk; \
done
policy.%.config: $(top_builddir)/policy.config
sed -e "s/@ASSEMBLY_NAME@/$(ASSEMBLY_NAME)/" -e "s/@POLICY@/$*/" $(top_builddir)/policy.config > $@

$(POLICY_ASSEMBLIES) : policy.%.$(ASSEMBLY): policy.%.config gtk-sharp.snk
$(AL) -link:policy.$*.config -out:$@ -keyfile:gtk-sharp.snk

install-data-local:
@if test -n '$(TARGET)'; then \
Expand Down

0 comments on commit c310878

Please sign in to comment.