Parcourir la source

fix test to be path independent

Jan Klemkow il y a 6 ans
Parent
commit
d3f5940f90
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -10,5 +10,5 @@ clean:
 
 test: scroll
 	# return code passthrough of childs
-	if ! ./scroll /usr/bin/true;  then exit 1; fi
-	if   ./scroll /usr/bin/false; then exit 1; fi
+	if ! ./scroll true;  then exit 1; fi
+	if   ./scroll false; then exit 1; fi