diff options
author | Ted Gould <ted@gould.cx> | 2010-06-18 11:55:22 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-06-18 11:55:22 -0500 |
commit | 35915da208febe200fe3b29acdea9c329e70b163 (patch) | |
tree | d1e3a00917a3cb270777bdc02ec3ed3c7c1fef37 /bindings/mono/Makefile.am | |
parent | e434b937dac91258f080bcb3832ee9fe6fe8814e (diff) | |
download | libayatana-appindicator-35915da208febe200fe3b29acdea9c329e70b163.tar.gz libayatana-appindicator-35915da208febe200fe3b29acdea9c329e70b163.tar.bz2 libayatana-appindicator-35915da208febe200fe3b29acdea9c329e70b163.zip |
Replacing the macros with the proper data
Diffstat (limited to 'bindings/mono/Makefile.am')
-rw-r--r-- | bindings/mono/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bindings/mono/Makefile.am b/bindings/mono/Makefile.am index 607325f..b366b6f 100644 --- a/bindings/mono/Makefile.am +++ b/bindings/mono/Makefile.am @@ -99,7 +99,9 @@ $(TEST): $(ASSEMBLY) $(TEST_SOURCES) all: $(TEST) policy.2.0.$(ASSEMBLY_NAME).config: policy.2.0.$(ASSEMBLY_NAME).config.in Makefile - cp $< $@ + sed -e "s|@ASSEMBLY_NAME@|$(ASSEMBLY_NAME)|" \ + -e "s|@ASSEMBLY_VERSION@|0.1|g" \ + $< > $@ $(DLLPOLICY): policy.2.0.$(ASSEMBLY_NAME).config $(ASSEMBLY_NAME).snk Makefile $(AL) -link:policy.2.0.$(ASSEMBLY_NAME).config -out:$(DLLPOLICY) -keyfile:$(srcdir)/$(ASSEMBLY_NAME).snk |