Skip to content
Snippets Groups Projects
Commit 59622625 authored by Antonio Rojas's avatar Antonio Rojas
Browse files

Fix quoting

parent def60228
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ md5sums=('07a1050db1a898e9a2e03b0c4569c4bd' ...@@ -17,7 +17,7 @@ md5sums=('07a1050db1a898e9a2e03b0c4569c4bd'
build() { build() {
cd $srcdir/$pkgname-$pkgver cd $pkgname-$pkgver
./configure --prefix=/usr --libexecdir=/usr/lib \ ./configure --prefix=/usr --libexecdir=/usr/lib \
--sbindir=/usr/bin --mandir=/usr/share/man \ --sbindir=/usr/bin --mandir=/usr/share/man \
--docdir=/usr/share/doc/dosfstools --enable-compat-symlinks --docdir=/usr/share/doc/dosfstools --enable-compat-symlinks
...@@ -25,6 +25,6 @@ build() { ...@@ -25,6 +25,6 @@ build() {
} }
package () { package () {
cd $srcdir/$pkgname-$pkgver cd $pkgname-$pkgver
make DESTDIR=$pkgdir install make DESTDIR="$pkgdir" install
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment