diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-05-25 14:23:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-05-25 14:23:31 +0000 |
commit | a22a49bdfb8a70d44450be25ef2c9da36d032b0c (patch) | |
tree | 6b9b21cfa142216c892441780eaf831511aedf24 /x11/xinit | |
parent | 8b0e1c94cd451b9257db363943592204ac597e33 (diff) | |
download | aports-a22a49bdfb8a70d44450be25ef2c9da36d032b0c.tar.bz2 aports-a22a49bdfb8a70d44450be25ef2c9da36d032b0c.tar.xz |
x11/xinit: make startx executable
This is a workaround. Something is bad in the make install.
Diffstat (limited to 'x11/xinit')
-rw-r--r-- | x11/xinit/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11/xinit/APKBUILD b/x11/xinit/APKBUILD index 78120e2e..20b65c1b 100644 --- a/x11/xinit/APKBUILD +++ b/x11/xinit/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=xinit pkgver=1.1.1 -pkgrel=0 +pkgrel=1 pkgdesc="X.Org initialisation program " url="http://xorg.freedesktop.org/" license="GPL" @@ -19,6 +19,7 @@ build () ./configure --prefix=/usr || return 1 make XINITDIR=/etc/X11/xinit || return 1 make XINITDIR=/etc/X11/xinit DESTDIR="$pkgdir" install || return 1 + chmod +x "$pkgdir"/usr/bin/startx install -m755 -d "$pkgdir"/etc/skel install -m755 -d "$pkgdir"/etc/X11/xinit install -m755 "$srcdir"/xinitrc "$pkgdir"/etc/skel/.xinitrc || return 1 |