Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/telegram-purple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2019-08-31 12:32:23 +0300
committerBen Wiederhake <BenWiederhake.GitHub@gmx.de>2019-08-31 12:43:14 +0300
commit53d5ee50c2d486e9ca21a8b126115efdc65a5b15 (patch)
treefe054a3f42f7e6fadce8764271c11edabf71c0f8
parent49f67d7c0122eca9e49a833aedb332f2fa66f47b (diff)
Fix target 'check-cleanv1.4.2
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 34dff3e..d053a74 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -318,7 +318,7 @@ DIST_ERR_MSG="Working directory is not git clean.\
Run 'git status' to show what files are causing this.\
Please note that 'make dist' packages the state in git, not the one on your disk."
-SUBMOD_ERR_MSG="Couldn't find tgl/tl-parser/tl-parser.c\
+SUBMOD_ERR_MSG="Submodule tgl looks weird.\
Are all submodules properly initialized and updated?"
# Not PHONY
@@ -328,7 +328,7 @@ Are all submodules properly initialized and updated?"
.PHONY: check-clean
check-clean: .git
@test "x" = x"`git status --porcelain`" || (echo ${DIST_ERR_MSG}; exit 1)
- @test -r tgl/tl-parser/.git || (echo ${SUBMOD_ERR_MSG}; exit 1)
+ @test -r tgl/.git || (echo ${SUBMOD_ERR_MSG}; exit 1)
# Feel free to remove the "check-clean" dependency if you know what you're doing.
.PHONY: dist