Skip to content

Commit

Permalink
Use $(RESGEN) instead of $(INTERNAL_RESGEN).
Browse files Browse the repository at this point in the history
svn path=/trunk/mcs/; revision=30501
  • Loading branch information
harinath committed Jun 29, 2004
1 parent 7f5cc73 commit cd4559a
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 5 deletions.
4 changes: 4 additions & 0 deletions mcs/build/ChangeLog
@@ -1,3 +1,7 @@
2004-06-28 Raja R Harinath <rharinath@novell.com>

* platforms/linux.make (RESGEN): Define using $(INTERNAL_RESGEN).

2004-06-21 Raja R Harinath <rharinath@novell.com>

* executable.make ($(PROGRAM)): Move depend on the makefrags ...
Expand Down
2 changes: 1 addition & 1 deletion mcs/build/platforms/linux.make
Expand Up @@ -9,7 +9,7 @@ PLATFORM_RUNTIME = $(RUNTIME)
PLATFORM_CORLIB = mscorlib.dll

BOOTSTRAP_MCS = mcs
RESGEN = monoresgen
RESGEN = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN)

PLATFORM_PATH_SEPARATOR = :

Expand Down
4 changes: 4 additions & 0 deletions mcs/class/Microsoft.VisualBasic/ChangeLog
@@ -1,3 +1,7 @@
2004-06-28 Raja R Harinath <rharinath@novell.com>

* Makefile ($(TXT_RESOURCES) $(RESX_RESOURCES)): Use $(RESGEN).

2004-06-23 Jambunathan K <kjambunathan@novell.com>
* Microsoft.VisualBasic.dll.sources: Added RandomVBFile.cs and BinaryVBFile.cs

Expand Down
4 changes: 2 additions & 2 deletions mcs/class/Microsoft.VisualBasic/Makefile
Expand Up @@ -19,7 +19,7 @@ include ../../build/library.make
$(the_lib): $(TXT_RESOURCES) $(RESX_RESOURCES)

$(TXT_RESOURCES): %.resources: %.txt
MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN) $<
$(RESGEN) $<

$(RESX_RESOURCES): %.resources: %.resx
MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN) $<
$(RESGEN) $<
4 changes: 4 additions & 0 deletions mcs/class/Npgsql/ChangeLog
@@ -1,3 +1,7 @@
2004-06-28 Raja R Harinath <rharinath@novell.com>

* Makefile (%.resources): Use $(RESGEN).

2004-06-22 Raja R Harinath <rharinath@novell.com>

* Makefile: Use $(PLATFORM_PATH_SEPARATOR) in MONO_PATH.
Expand Down
2 changes: 1 addition & 1 deletion mcs/class/Npgsql/Makefile
Expand Up @@ -39,7 +39,7 @@ RESX_RES = Npgsql/NpgsqlState.resources Npgsql/NpgsqlClosedState.resources Npgsq
all: $(RESX_RES) $(the_lib)

%.resources: %.resx
MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN) $<
$(RESGEN) $<

clean: clean-recursive clean-local

Expand Down
4 changes: 4 additions & 0 deletions mcs/nunit20/util/ChangeLog
@@ -1,3 +1,7 @@
2004-06-28 Raja R Harinath <rharinath@novell.com>

* Makefile (%.resources): Use $(RESGEN).

2004-06-21 Raja R Harinath <rharinath@novell.com>

* Makefile (LIBRARY_SNK): Sign with nunit.key.
2 changes: 1 addition & 1 deletion mcs/nunit20/util/Makefile
Expand Up @@ -17,7 +17,7 @@ EXTRA_DISTFILES = \
Transform.resx

%.resources: %.resx
MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN) $<
$(RESGEN) $<

include ../../build/library.make

Expand Down

0 comments on commit cd4559a

Please sign in to comment.