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 ec1c2ae commit fbc18f7Copy full SHA for fbc18f7
autobuild/build
@@ -1,2 +1,12 @@
1
-cp -a {bashrc,profile} ${PKGDIR}/etc/
2
-cp -r {{bashrc,profile}.d,skel} ${PKGDIR}/etc/
+install -dm755 "$PKGDIR"/etc/
+cp -a {bashrc,profile} "$PKGDIR"/etc/
3
+cp -r {bashrc.d,profile.d,skel} "$PKGDIR"/etc/
4
+
5
+# HACK: generate conffiles
6
+cd "$PKGDIR"
7
+IFS=$'\n'
8
+for i in $(find . -type f); do
9
+ echo "${i/./}" >> "$SRCDIR"/autobuild/conffiles
10
+done
11
+IFS=$' \t\n'
12
+cd "$SRCDIR"
0 commit comments