diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-08 20:49:49 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-08 20:49:49 -0300 |
commit | 3d9dfacf9647c190ba94890c7e7b4f4c8a14d3a2 (patch) | |
tree | 032e0c05b9e46241befb4ac753429a527870f71e | |
parent | 4ec145ccfc042a78b953357d5fb5f86803463192 (diff) | |
download | abslibre-3d9dfacf9647c190ba94890c7e7b4f4c8a14d3a2.tar.gz abslibre-3d9dfacf9647c190ba94890c7e7b4f4c8a14d3a2.tar.bz2 abslibre-3d9dfacf9647c190ba94890c7e7b4f4c8a14d3a2.zip |
kdelibs-libre: fix issues on PKGBUILD
-rw-r--r-- | libre/kdelibs-libre/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libre/kdelibs-libre/PKGBUILD b/libre/kdelibs-libre/PKGBUILD index 5393ce9d0..ea698dfd7 100644 --- a/libre/kdelibs-libre/PKGBUILD +++ b/libre/kdelibs-libre/PKGBUILD @@ -30,7 +30,7 @@ sha1sums=('b5db1b91bd96b44ebd1b5e71019bb95b59775237' 'a1502a964081ad583a00cf90c56e74bf60121830') prepare() { - cd ${_pkgname}-${pkgver} + cd "${srcdir}"/${_pkgname}-${pkgver} # avoid file conflict with gnome-menus patch -p1 -i "${srcdir}"/kde-applications-menu.patch # qmake refers to Qt5 @@ -40,7 +40,7 @@ prepare() { } build() { - cd ../ + cd "${srcdir}" mkdir build cd build cmake ../${_pkgname}-${pkgver} \ |