diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index 23945313..62c14ed8 100755 --- a/debian/rules +++ b/debian/rules @@ -29,7 +29,7 @@ build-stamp: then \ echo opt > best-stamp; \ $(MAKE) world \ - || (echo WARNING: NATIVE CODE COMPILATION FAILED \ + || (echo WARNING: NATIVE CODE COMPILATION FAILED \ && echo Trying to build coq in bytecode instead \ && echo byte > best-stamp \ && $(MAKE) archclean clean \ @@ -38,10 +38,10 @@ build-stamp: && echo Coq was built in bytecode instead); \ else \ echo byte > best-stamp; \ - $(MAKE) world; \ + $(MAKE) world; \ fi touch test-suite/success/debian.v8 - $(MAKE) BEST=$(shell cat best-stamp) check + $(MAKE) BEST=`cat best-stamp` check touch build-stamp clean: unpatch |