Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
libfprint
fprintd
Commits
2f78c46d
Commit
2f78c46d
authored
Feb 06, 2018
by
Bastien Nocera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: Fix srcdir = builddir build
Don't try to copy a file over itself if srcdir == builddir
parent
8eba3099
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Makefile.am
Makefile.am
+1
-1
No files found.
Makefile.am
View file @
2f78c46d
...
...
@@ -23,7 +23,7 @@ check-translations:
update-translations
:
create-pot check-translations
@
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
-include
$(top_srcdir)/git.mk
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment