Commit 4b0b7e0cad555e197d8915ab243d299b4adc97fa

Authored by Perry Werneck
1 parent af9aeaa3
Exists in master and in 1 other branch develop

Fixing plugin locales.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
server/Makefile.in
@@ -234,7 +234,7 @@ install-plugin: \ @@ -234,7 +234,7 @@ install-plugin: \
234 #---[ Misc Targets ]--------------------------------------------------------------------- 234 #---[ Misc Targets ]---------------------------------------------------------------------
235 235
236 $(POTDIR)/$(MODULE_NAME).pot: \ 236 $(POTDIR)/$(MODULE_NAME).pot: \
237 - $(foreach SRC, $(basename $(SOURCES)), $(POTDIR)/$(MODULE_NAME)/$(SRC).pot) 237 + $(foreach SRC, $(basename $(CORE_SOURCES) $(PLUGIN_SOURCES) $(SERVICE_SOURCES)), $(POTDIR)/$(MODULE_NAME)/$(SRC).pot)
238 238
239 @rm -f $@ 239 @rm -f $@
240 @mkdir -p `dirname $@` 240 @mkdir -p `dirname $@`
@@ -344,7 +344,7 @@ clean: \ @@ -344,7 +344,7 @@ clean: \
344 cleanRelease 344 cleanRelease
345 345
346 @rm -fr $(BASEDIR)/.tmp/$(MODULE_NAME) 346 @rm -fr $(BASEDIR)/.tmp/$(MODULE_NAME)
347 - @rm -fr $(POTDIR)/$(MODULE_NAME) 347 + @rm -fr $(POTDIR)/$(MODULE_NAME).pot
348 @rm -fr src/include/marshal 348 @rm -fr src/include/marshal
349 349
350 cleanDebug: 350 cleanDebug: