mirror of
https://github.com/fspc/dswim.git
synced 2025-04-04 08:13:24 -04:00
Fixed for normal user.
This commit is contained in:
parent
31b812c29b
commit
cc80fcbe67
17
swim_pkg
17
swim_pkg
@ -56,7 +56,7 @@ my $urgency = "low";
|
|||||||
my $gbootroot_cvs = "$user_home/avd/avd/swim";
|
my $gbootroot_cvs = "$user_home/avd/avd/swim";
|
||||||
my $packaging_place = "$user_home/avd/PACKAGING-swim";
|
my $packaging_place = "$user_home/avd/PACKAGING-swim";
|
||||||
my $packaging_defaults = "$gbootroot_cvs/pkg/dpkg";
|
my $packaging_defaults = "$gbootroot_cvs/pkg/dpkg";
|
||||||
my $email = "freesource\@users.sourceforge.net";
|
my $email = "freesource\@freesoftwarepc.com";
|
||||||
my $name = "Jonathan Rosenbaum";
|
my $name = "Jonathan Rosenbaum";
|
||||||
my $makefile = "Makefile.pkg";
|
my $makefile = "Makefile.pkg";
|
||||||
|
|
||||||
@ -110,6 +110,8 @@ chdir($gbootroot_cvs) or die "Couldn't change to $gbootroot_cvs: $!\n";
|
|||||||
# Basically we are just concerned with the first part of cp and will
|
# Basically we are just concerned with the first part of cp and will
|
||||||
# use home_builder to make sure the directory exists.
|
# use home_builder to make sure the directory exists.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
foreach (@make_lines) {
|
foreach (@make_lines) {
|
||||||
s/\t//;
|
s/\t//;
|
||||||
if (/cp/) {
|
if (/cp/) {
|
||||||
@ -119,11 +121,18 @@ foreach (@make_lines) {
|
|||||||
$base = dirname($dir);
|
$base = dirname($dir);
|
||||||
home_builder("$packaging_place/$base");
|
home_builder("$packaging_place/$base");
|
||||||
}
|
}
|
||||||
system "cp -fa $dir $packaging_place/$base";
|
if ( $_ =~ /cp/ ) {
|
||||||
|
system "cp -fa $dir $packaging_place/$base";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
system "install -d $packaging_place/$dir";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (!/mknod|dev/) {
|
if (!/mknod|dev/) {
|
||||||
system "$_";
|
## no need to do this
|
||||||
|
## system "$_";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -238,7 +247,7 @@ if (!$stop) {
|
|||||||
} # end if !$stop
|
} # end if !$stop
|
||||||
|
|
||||||
|
|
||||||
system "debuild";
|
system "debuild -rfakeroot -i\`.*bz2$\` -k2DAB7037";
|
||||||
|
|
||||||
sub home_builder {
|
sub home_builder {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user