diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2010-01-06 17:55:27 +0100 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2010-01-06 17:55:27 +0100 |
commit | 35c909bffaf940a27a5ed477cf5fe3d3994b3c90 (patch) | |
tree | 73f4c7afd957e2450cbec137170670984be6c1d3 /moz | |
parent | 9f9fb62569c97ec7a49c8c2b582267b309651ac9 (diff) |
DEV300 masterfix: #i10000#: proper lookup for sqlite3
Notes
Notes:
split repo tag: libs-extern-sys_ooo/DEV300_m69
Diffstat (limited to 'moz')
-rw-r--r-- | moz/extractfiles.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/moz/extractfiles.mk b/moz/extractfiles.mk index c98bf8574e73..81e04ab80ad6 100644 --- a/moz/extractfiles.mk +++ b/moz/extractfiles.mk @@ -67,7 +67,7 @@ NSS_MODULE_RUNTIME_LIST:= \ plds4 \ smime3 \ softokn3 \ - sqlite3 \ + sqlite/sqlite3 \ ssl3 BIN_RUNTIMELIST= \ @@ -307,8 +307,8 @@ $(MISC)$/build$/so_moz_runtime_files: $(OUT)$/bin$/mozruntime.zip echo >& $(NULLDEV) .IF "$(ENABLE_NSS_MODULE)" == "YES" # We add the libraries from the separate nss module - $(foreach,file,$(NSS_MODULE_RUNTIME_LIST) $(COPY) $(SOLARLIBDIR)$/$(DLLPRE)$(file)$(DLLPOST) \ - $(RUNTIME_DIR)$/$(DLLPRE)$(file)$(DLLPOST) &&) \ + $(foreach,file,$(NSS_MODULE_RUNTIME_LIST) $(COPY) $(SOLARLIBDIR)$/$(file:d:d)/$(DLLPRE)$(file:f)$(DLLPOST) \ + $(RUNTIME_DIR)$/$(DLLPRE)$(file:f)$(DLLPOST) &&) \ echo >& $(NULLDEV) .ENDIF .ELSE # .IF "$(GUI)" == "UNX" |