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.
1 parent 4628a11 commit 1735f9cCopy full SHA for 1735f9c
Makefile
@@ -160,10 +160,10 @@ docs:
160
161
dist: $(PACKAGE).tar.gz $(PACKAGE).zip
162
distcheck: .git
163
- -$(RM) -r $$TMPDIR/tinycbor-distcheck
164
- GIT_DIR=$(SRCDIR).git git archive --prefix=tinycbor-distcheck/ --format=tar HEAD | tar -xf - -C $$TMPDIR
165
- cd $$TMPDIR/tinycbor-distcheck && $(MAKE) silentcheck
166
- $(RM) -r $$TMPDIR/tinycbor-distcheck
+ -$(RM) -r $${TMPDIR-/tmp}/tinycbor-distcheck
+ GIT_DIR=$(SRCDIR).git git archive --prefix=tinycbor-distcheck/ --format=tar HEAD | tar -xf - -C $${TMPDIR-/tmp}
+ cd $${TMPDIR-/tmp}/tinycbor-distcheck && $(MAKE) silentcheck
+ $(RM) -r $${TMPDIR-/tmp}/tinycbor-distcheck
167
168
release: .git
169
$(MAKE) -f $(MAKEFILE) distcheck
0 commit comments