We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make checkstyle
1 parent ec7038b commit ac8f9c6Copy full SHA for ac8f9c6
.gitignore
@@ -5,6 +5,8 @@
5
*.tar.gz
6
*.rpm
7
*.tdy
8
+*.orig
9
+*.rej
10
11
# ignore autogenerated test files
12
/tests/**/*.log
Makefile
@@ -270,11 +270,11 @@ endif
270
if [ 0 != $$? ] ; then \
271
RC=1; \
272
echo "saw mismatch for $$FILE"; \
273
- if [[ -f $$FILE.tdy && "$(UPDATE)x" != 'x' ]] ; then \
+ if [ -f $$FILE.tdy -a "$(UPDATE)x" != 'x' ]; then \
274
echo "updating $$FILE"; \
275
mv $$FILE $$FILE.orig; \
276
mv $$FILE.tdy $$FILE ; \
277
- fi \
+ fi \
278
fi \
279
done ; \
280
exit $$RC
0 commit comments