mirror of
https://github.com/YellowJacketLinux/lfs-buildscripts.git
synced 2025-01-23 14:32:20 +08:00
14 lines
244 B
Bash
14 lines
244 B
Bash
#!/bin/bash
|
|
|
|
source versions.sh
|
|
|
|
GLSOURCES="/sources"
|
|
|
|
[ ! -d /usr/local/src ] && mkdir -p /usr/local/src
|
|
|
|
pushd /usr/local/src
|
|
tar -Jxf ${GLSOURCES}/${systemd_units_tarball}
|
|
chown -R root:root blfs-systemd-units-${systemd_units_version}
|
|
popd
|
|
|