Massive renaming, pkgfs is now called xbps.

Also known as "xtraeme's build package system".

--HG--
extra : convert_revision : 119840ceae588fef65d6dcab651f607f54fa0be6
This commit is contained in:
Juan RP 2008-10-13 07:32:05 +02:00
parent b947d143c7
commit cfa18b4416
195 changed files with 377 additions and 393 deletions

View file

@ -1,6 +1,6 @@
#
# This helper transforms files with wrong perl path to the correct
# one pointing at PKGFS_MASTERDIR/bin/perl.
# one pointing at XBPS_MASTERDIR/bin/perl.
#
perl_transform_file()
@ -11,7 +11,7 @@ perl_transform_file()
for f in ${files}; do
[ ! -f $f ] && continue
$sed_cmd -e "s|^#!.*/usr/bin/perl|#!$PKGFS_MASTERDIR/bin/perl|" \
$sed_cmd -e "s|^#!.*/usr/bin/perl|#!$XBPS_MASTERDIR/bin/perl|" \
$f > $f.in && $mv_cmd -f $f.in $f && \
echo "=> Transformed $(basename $f) with correct path."
done