We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181c130 commit 2cfe25fCopy full SHA for 2cfe25f
autobuild/build
@@ -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/
+install -Dm644 bashrc abdist/etc/bashrc
+install -Dm644 profile abdist/etc/profile
+cp -r bashrc.d abdist/etc/
4
+cp -r profile.d abdist/etc/
5
cp -r skel abdist/etc/
autobuild/defines
@@ -1,9 +1,11 @@
PKGNAME=bash-startup
-PKGVER=0.3
+PKGVER=2.1really0.3
PKGREL=0
PKGDEP=bash
PKGSEC=misc
6
PKGDES="Generic Bash Startup Files for AOSC OS"
7
8
# HACK: generate conffiles
9
-find . -type f | grep -E '(profile|bashrc|skel)' > autobuild/conffiles
+for i in `find . -type f | grep -E '(profile|bashrc|skel)'`; do
10
+ echo /etc/$i >> autobuild/conffiles
11
+done
0 commit comments