diff options
Diffstat (limited to 'editors/bless/files/patch-src::Makefile')
-rw-r--r-- | editors/bless/files/patch-src::Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/editors/bless/files/patch-src::Makefile b/editors/bless/files/patch-src::Makefile new file mode 100644 index 000000000000..b1aec5af1a8b --- /dev/null +++ b/editors/bless/files/patch-src::Makefile @@ -0,0 +1,17 @@ +--- src/Makefile.orig Sun Feb 6 04:32:01 2005 ++++ src/Makefile Sun Feb 6 04:33:23 2005 +@@ -65,12 +65,12 @@ + + + bless.exe: $(GUI_SRC) $(BB_SRC) $(GUI_DRAWERS_SRC) $(GUI_AREAS_SRC) $(GUI_DIALOGS_SRC) $(TOOLS_FIND_SRC) $(UTIL_SRC) $(MISC_DEPS) +- $(MCS) -g -o bless.exe -t:exe -r:nunit.framework $(RESOURCES) -pkg:gtk-sharp -pkg:glade-sharp \ ++ $(MCS) -g -o bless.exe -t:exe -r:nunit.framework $(RESOURCES) $(shell pkg-config --libs gtk-sharp glade-sharp) \ + $(GUI_SRC) $(BB_SRC) $(GUI_DRAWERS_SRC) $(GUI_AREAS_SRC) $(GUI_DIALOGS_SRC) $(TOOLS_FIND_SRC) $(UTIL_SRC) + + + %.dll:%.cs +- $(MCS) -t:library -r:nunit.framework -pkg:gtk-sharp $< ++ $(MCS) -t:library -r:nunit.framework $(shell pkg-config --libs gtk-sharp) $< + + install: bless.exe + install -c -d $(PREFIX)/lib/bless/bin/ |