Skip to content

Commit 2cfe25f

Browse files
author
Mingcong Bai
committed
carelessness...
1 parent 181c130 commit 2cfe25f

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

autobuild/build

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
mkdir -p abdist/etc/profile.d
2-
install -m755 *.sh abdist/etc/profile.d/
3-
install -m644 {bash*,profile} abdist/etc/
1+
install -Dm644 bashrc abdist/etc/bashrc
2+
install -Dm644 profile abdist/etc/profile
3+
cp -r bashrc.d abdist/etc/
4+
cp -r profile.d abdist/etc/
45
cp -r skel abdist/etc/

autobuild/defines

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
PKGNAME=bash-startup
2-
PKGVER=0.3
2+
PKGVER=2.1really0.3
33
PKGREL=0
44
PKGDEP=bash
55
PKGSEC=misc
66
PKGDES="Generic Bash Startup Files for AOSC OS"
77

88
# HACK: generate conffiles
9-
find . -type f | grep -E '(profile|bashrc|skel)' > autobuild/conffiles
9+
for i in `find . -type f | grep -E '(profile|bashrc|skel)'`; do
10+
echo /etc/$i >> autobuild/conffiles
11+
done

0 commit comments

Comments
 (0)