diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-26 13:22:11 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-26 13:22:11 +0000 |
commit | 9de40e67e51955576c87785db0c6ce98050c64fd (patch) | |
tree | fa6efe4ca6990135e39a1cec34ae88c223ffa98f | |
parent | c2139f0a4ab0e86f9632881f4954b7e3b41e10d5 (diff) | |
download | usdx-9de40e67e51955576c87785db0c6ce98050c64fd.tar.gz usdx-9de40e67e51955576c87785db0c6ce98050c64fd.tar.xz usdx-9de40e67e51955576c87785db0c6ce98050c64fd.zip |
- Disable plugins as most linux distributions use the buggy binutils-2.19.1 (upcoming Ubuntu 9.10 will use a different one). In addition the dll-plugins are very instable and probably will not used in the release in favor of the lua ones.
- If you really want this stuff, make them manually:
cd plugins
make
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1925 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 1b4f7707..2772147d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -114,7 +114,7 @@ BUILD_TARGETS = all debug release rebuild build .PHONY: $(BUILD_TARGETS) $(BUILD_TARGETS): all-deps $(MAKE) -C $(USDX_SRC_DIR) $@ - $(MAKE) -C $(USDX_PLUGIN_DIR) all +# $(MAKE) -C $(USDX_PLUGIN_DIR) all .PHONY: all-deps all-deps: @@ -215,7 +215,7 @@ install-strip: install .PHONY: install-all -install-all: install-exec install-plugins install-data +install-all: install-exec install-data .PHONY: install-exec install-exec: |