73eb2de3a9
Actually the test fails with: gcc: fatal error: environment variable ‘RPM_ARCH’ not defined I believe this is caused by the package notes implementation being broken. We'll need to fix that separately.
10 lines
248 B
Bash
Executable File
10 lines
248 B
Bash
Executable File
#!/bin/bash -
|
|
set -e
|
|
set -x
|
|
|
|
# Compile trivial tk program.
|
|
echo 'ignore (Tk.opentk ())' > tktest.ml
|
|
ocamlfind ocamlopt -package labltk tktest.ml -linkpkg -o tktest
|
|
# Unfortunately we can't run this as we won't have an X server available.
|
|
#./tktest
|