aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 13:14:59 +0800
committerGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 13:14:59 +0800
commit7f7b30959b8e453cbf7571e931cdeb9dbae54743 (patch)
treea27294ec7bec2d283b35a2872729a82ebb895590 /Makefile.in
parent70322077d21ae38bbe503d88e9e4d73ec883a493 (diff)
don't make xsel in subshell
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 7e1c664d..6bc04a6d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -345,8 +345,11 @@ test: $(PROGRAMS) fish_tests
xsel-1.2.0:
tar -xf xsel-1.2.0.tar.gz
-xsel-1.2.0/xsel: xsel-1.2.0
- cd xsel-1.2.0; ./configure && make || echo "Failed to build xsel - either add the required dependencies or use './configure --without-xsel' to disable it."
+xsel-1.2.0/Makefile: xsel-1.2.0
+ cd xsel-1.2.0 && ./configure
+
+xsel-1.2.0/xsel: xsel-1.2.0/Makefile
+ $(MAKE) -C xsel-1.2.0 || echo "Failed to build xsel - either add the required dependencies or use './configure --without-xsel' to disable it."
#