aboutsummaryrefslogtreecommitdiff
path: root/reproduce/software/bash
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2019-11-08 12:09:42 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2019-11-08 12:09:42 +0000
commit289679bab09b27d0f0d88967a5edc1212e2ea348 (patch)
tree7acbb920bf91910c0ef4a772bb5e0b9a858a5fea /reproduce/software/bash
parent5fe30b319c46ab82859d727d6d55461a951f614b (diff)
Minor corrections applied in software builds
While working on a different branch to build the GNU C Library, I noticed a few places in the template that need corrections which are now applied: 1. A new-line character after the "C compiler works" notice at the start of the configure script. 2. Removing possible `::' in the `LD_LIBRARY_PATH' definition of `basic.mk'. Note that its not necessary in the other steps because we don't use any outside-defined `LD_LIBRARY_PATH'. 3. Building GMP for C++ and also with `--enable-fat'. 4. Removing the unpacked Perl tarball directory after its installation.
Diffstat (limited to 'reproduce/software/bash')
-rwxr-xr-xreproduce/software/bash/configure.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/reproduce/software/bash/configure.sh b/reproduce/software/bash/configure.sh
index 535fcc4..821b303 100755
--- a/reproduce/software/bash/configure.sh
+++ b/reproduce/software/bash/configure.sh
@@ -676,10 +676,10 @@ gcc_works=0
testprog=$tmpblddir/test-c
testsource=$tmpblddir/test.c
echo; echo; echo "Checking host C compiler...";
-echo "#include <stdio.h>" > $testsource
-echo "#include <stdlib.h>" >> $testsource
-echo "int main(void){printf(\"...C compiler works.\");" >> $testsource
-echo " return EXIT_SUCCESS;}" >> $testsource
+echo "#include <stdio.h>" > $testsource
+echo "#include <stdlib.h>" >> $testsource
+echo "int main(void){printf(\"...C compiler works.\n\");" >> $testsource
+echo " return EXIT_SUCCESS;}" >> $testsource
if gcc $testsource -o$testprog && $testprog; then
rm $testsource $testprog
else