mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-08 20:03:34 +02:00
build: Fix srcdir = builddir build
Don't try to copy a file over itself if srcdir == builddir
This commit is contained in:
@ -23,7 +23,7 @@ check-translations:
|
|||||||
|
|
||||||
update-translations: create-pot check-translations
|
update-translations: create-pot check-translations
|
||||||
@tx -r $(srcdir) pull --all --force --skip
|
@tx -r $(srcdir) pull --all --force --skip
|
||||||
@if [ ! -d .tx ] ; then mkdir .tx ; fi ; cp -f $(srcdir)/.tx/config .tx/
|
@if [ ! -d .tx ] ; then mkdir .tx ; fi ; if [ x$(srcdir) != x$(builddir) ] ; then cp -f $(srcdir)/.tx/config .tx/ ; fi
|
||||||
@tx push --source
|
@tx push --source
|
||||||
|
|
||||||
-include $(top_srcdir)/git.mk
|
-include $(top_srcdir)/git.mk
|
||||||
|
|||||||
Reference in New Issue
Block a user