diff options
-rwxr-xr-x | create_hdd.sh | 4 | ||||
-rw-r--r-- | i486-stage4/git/DESCR | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/create_hdd.sh b/create_hdd.sh index 8f65923..f7b5c99 100755 --- a/create_hdd.sh +++ b/create_hdd.sh @@ -111,6 +111,10 @@ cp "$HOME/.ssh/id_rsa.pub" build/.ssh/authorized_keys chown 1001:1001 build # default PAM rules expect a password to be set for su? echo 'build:xx' | chpasswd +cat > build/.bashrc <<EOF +export PATH=$PATH:/usr/bin/core_perl +EOF +chmod 0775 build/.bashrc # add some test programs to test the C and C++ compiler diff --git a/i486-stage4/git/DESCR b/i486-stage4/git/DESCR index b8d96cd..fc4e5cc 100644 --- a/i486-stage4/git/DESCR +++ b/i486-stage4/git/DESCR @@ -1,2 +1,8 @@ -# no Gnome, draws in tons of things we don't want for a base system +# no Gnome integration sed -i "/makedepends=/s/'libgnome-keyring'//" PKGBUILD +sed -i "s@\(make -C contrib/credential/gnome-keyring\)@#\1@" PKGBUILD +sed -i "/# gnome credentials helper/,/#/s/\(.*\)/#\1/" PKGBUILD + +# no libsecret in stage3 currently +sed -i "s@\(make -C contrib/credential/libsecret\)@#\1@" PKGBUILD +sed -i "/# libsecret credentials helper/,/#/s/\(.*\)/#\1/" PKGBUILD |