Skip to content
Snippets Groups Projects
Commit 7dc30f09 authored by Albert Gräf's avatar Albert Gräf
Browse files

Core package build (-c) was broken, fix it.

parent 557a0f06
No related branches found
No related tags found
1 merge request!172Build system fixes
......@@ -211,7 +211,9 @@ then
echo "core Pd..."
rm -f ../Pd-l2ork-`date +%Y%m%d`.tar.bz2 2> /dev/null
cd pd/src/
make clean || true # this may fail on 1st attempt
# make sure that Pd is configured before trying to package it
test -f config.h || (aclocal && autoconf && make -C ../../packages pd)
make clean
cd ../../
tar -jcf ./Pd-l2ork-`date +%Y%m%d`.tar.bz2 pd
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment