diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2014-12-25 23:12:22 -0200 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2014-12-25 23:41:34 -0200 |
commit | 15cfa1d19c7a843b0267bd24bb91d2e01f97692f (patch) | |
tree | 7de8f46590f8c2e8b11729d94c4668ad4eb7d6b5 | |
parent | dd66ff3a147e8b9b372db94a7b2f4e3541bfbe29 (diff) | |
download | kmod-15cfa1d19c7a843b0267bd24bb91d2e01f97692f.tar.gz kmod-15cfa1d19c7a843b0267bd24bb91d2e01f97692f.tar.bz2 kmod-15cfa1d19c7a843b0267bd24bb91d2e01f97692f.zip |
build-sys: set -e separately, rather than putting -e in the shebang line
Like a008d76 (autogen.sh: set -e separately, rather than putting -e in
the shebang line) in libabc by Josh Triplett.
-rwxr-xr-x | bootstrap | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ -#!/bin/sh -e +#!/bin/sh +set -e gtkdocize --docdir libkmod/docs || touch libkmod/docs/gtk-doc.make autoreconf --install --symlink |