aboutsummaryrefslogtreecommitdiff
path: root/common/win32.mak
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2013-09-24 16:51:18 +0200
committerSebastian Dröge <slomo@circular-chaos.org>2013-09-24 16:51:28 +0200
commit712ca5a1def2bee93419cd8aa1bdfe56344bfbb1 (patch)
treea33c2c278ae39b885630cea815337896fd65fcb7 /common/win32.mak
parent3b5ddd551f1af1851749009c502bab634a41603d (diff)
parent083d79e7ec2d1d5cace3484a6095fcf6eb104e1c (diff)
Merge branch 'debian-experimental'
Diffstat (limited to 'common/win32.mak')
-rw-r--r--common/win32.mak8
1 files changed, 7 insertions, 1 deletions
diff --git a/common/win32.mak b/common/win32.mak
index c343a04..30e347e 100644
--- a/common/win32.mak
+++ b/common/win32.mak
@@ -51,11 +51,17 @@ check-exports:
if test $$fail != 0; then \
echo '-----------------------------------------------------------'; \
echo 'Run this to update the .def files:'; \
- echo 'make check-exports 2>&1 | patch -p1'; \
+ echo 'make update-exports'; \
echo '-----------------------------------------------------------'; \
fi; \
exit $$fail
+update-exports:
+ make check-exports 2>&1 | patch -p1
+ git add win32/common/libgst*.def
+ git diff --cached -- win32/common/
+ echo '^^^--- updated and staged changes above'
+
# complain about nonportable printf format strings (%lld, %llu, %zu etc.)
check-nonportable-print-format:
@fail=0 ; \