Last change
on this file since 34 was
34,
checked in by hartmans, 18 years ago
|
Add xen and xen-common
|
-
Property svn:executable set to
*
|
File size:
272 bytes
|
Rev | Line | |
---|
[34] | 1 | #!/bin/sh |
---|
| 2 | # CHECK-BUILD |
---|
| 3 | |
---|
| 4 | RC=0 |
---|
| 5 | |
---|
| 6 | python -c ' |
---|
| 7 | import os.path, sys |
---|
| 8 | for p in sys.path: |
---|
| 9 | if os.path.exists(p + "/config/Makefile"): |
---|
| 10 | sys.exit(0) |
---|
| 11 | sys.exit(1) |
---|
| 12 | ' || RC=1 |
---|
| 13 | |
---|
| 14 | if test ${RC} -ne 0; then |
---|
| 15 | echo |
---|
| 16 | echo " *** Check for python development environment FAILED" |
---|
| 17 | fi |
---|
| 18 | |
---|
| 19 | exit ${RC} |
---|
Note: See
TracBrowser
for help on using the repository browser.