Skip to content

Commit 5242de1

Browse files
committed
Don't include the .hg directory for the codegen module in the source archive.
1 parent 66360dc commit 5242de1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ post-dist:
4646
srcdist: distclean
4747
mkdir -p build/$(SRC_ARCHIVE)
4848
cp -a `ls | grep -v '^\(build\|BUILD.in\)$$'` build/$(SRC_ARCHIVE)
49-
cp -r $(AMQP_CODEGEN_DIR) build/$(SRC_ARCHIVE)/codegen
49+
50+
mkdir -p build/$(SRC_ARCHIVE)/codegen
51+
cp -r $(AMQP_CODEGEN_DIR)/* build/$(SRC_ARCHIVE)/codegen/.
52+
5053
if [ -f BUILD.in ]; then \
5154
cp BUILD.in build/$(SRC_ARCHIVE)/BUILD; \
5255
elinks -dump -no-references -no-numbering $(WEB_URL)build.html \

0 commit comments

Comments
 (0)