minor update

This commit is contained in:
Troy Will 2009-07-10 07:24:04 +04:00
parent 116af8e9d2
commit 5d5094311c

View file

@ -53,11 +53,12 @@ sub stow_gnu_software {
open(OUT, ">stow-$software-$version");
print OUT "#!/bin/bash\n";
print OUT "set -o errexit # exit on error\n";
print OUT "./configure --prefix=/usr/local\n";
print OUT "make\n";
print OUT "# ./configure --prefix=/usr/local\n";
print OUT "# make\n";
print OUT "$su_command make DESTDIR=$stow_dir/$software-$version install\n";
print OUT "$su_command stow $software-$version\n";
print OUT "$su_command /sbin/ldconfig -v\n";
print OUT "$su_command /sbin/ldconfig\n";
# To-do Check /etc/ldconfig
close(OUT);
}