diff options
author | Rene Engelhard <rene@openoffice.org> | 2010-06-22 18:29:17 +0200 |
---|---|---|
committer | Rene Engelhard <rene@openoffice.org> | 2010-06-22 18:29:17 +0200 |
commit | e6b791c68ca57a6e4403ae9a6eb1dd812c133706 (patch) | |
tree | 5408900d25dd395c5e6f864b98d4b2eacbda1779 /stax | |
parent | bf6f60cab3d8629c4f2f141143ee18a2c9ef2aa0 (diff) |
configure25: #i93116# Allow to use the prebuilt stax
Diffstat (limited to 'stax')
-rw-r--r-- | stax/makefile.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/stax/makefile.mk b/stax/makefile.mk index 6dbe81ee7ca5..63577615f874 100644 --- a/stax/makefile.mk +++ b/stax/makefile.mk @@ -47,6 +47,15 @@ all: @echo "Therefore the files provided here does not need to be built in addition." .ENDIF +EXTERNAL_DIR=$(PRJ)$/..$/external/StAX + +.IF "$(BUILD_STAX)" != "YES" + +$(OUT)$/class$/jsr173_1.0_api.jar : $(EXTERNAL_DIR)$/jsr173_1.0_api.jar + +$(COPY) $< $@ + +.ELSE # "$(BUILD_STAX)" != "YES" + # --- Files -------------------------------------------------------- TARFILE_NAME=stax-api-1.0-2-sources TARFILE_MD5=8294d6c42e3553229af9934c5c0ed997 @@ -68,3 +77,4 @@ nojava: .INCLUDE : tg_ext.mk .ENDIF +.ENDIF # "$(BUILD_STAX)" != "YES" |