Permalink
Browse files

Add configure psproc check for /bin/bash for open build systems

  • Loading branch information...
1 parent 28b33e9 commit cb5f2c1cc9bbf9e65cd0589dcd0f81f79bbac1b9 @ddiss ddiss committed with lberk May 5, 2015
Showing with 4 additions and 0 deletions.
  1. +2 −0 configure
  2. +2 −0 configure.ac
View
@@ -8872,6 +8872,8 @@ NR == 1 { if ($1 != "UID" && $1 != "USER") exit
# Unix variants
$2 == 1 && / init/ { print "OK"; exit }
$2 == 1 && / \/etc\/init/ { print "OK"; exit }
+# Open Build Service
+$2 == 1 && / \/bin\/bash/ { print "OK"; exit }
# Fedora 9
$2 == 1 && / \/sbin\/init/ { print "OK"; exit }
# Fedora 15
View
@@ -1105,6 +1105,8 @@ NR == 1 { if ($1 != "UID" && $1 != "USER") exit
# Unix variants
$2 == 1 && / init/ { print "OK"; exit }
$2 == 1 && / \/etc\/init/ { print "OK"; exit }
+# Open Build Service
+$2 == 1 && / \/bin\/bash/ { print "OK"; exit }
# Fedora 9
$2 == 1 && / \/sbin\/init/ { print "OK"; exit }
# Fedora 15

0 comments on commit cb5f2c1

Please sign in to comment.