summaryrefslogtreecommitdiffstats
path: root/src/inline.sh
Commit message (Collapse)AuthorAgeFilesLines
* Improve error handling in inline.shAlastair Harrison2020-08-281-3/+10
| | | | | | | | | Previously the script would generate some output and return a zero error code, even if the calls to `od` or `sed` failed. This change ensures that: - If `od` or `sed` fail then the script will fail. - Output will only be written on success.
* make inline.sh more portablegoshhhy2019-04-161-1/+1
|
* Strip tabs from od's outputMike Seplowitz2015-08-191-1/+1
| | | | /bin/od on Solaris and AIX both generate tabs.
* src/inline.sh: fix typoIWATSUKI Hiroyuki2011-03-141-1/+1
| | | | I (Evan) got this wrong in the previous commit.
* inline.sh: BSD / OS X fixesIWATSUKI Hiroyuki2011-03-131-1/+1
|
* inline.sh: rewrite for better portabilityEvan Martin2011-03-071-5/+1
|
* use a shell script to inline browse.pyEvan Martin2011-03-071-0/+29
Relying on the inline-assembly trick was cute but it didn't work on other platforms; relying on xxd will make us depend on xxd being available. Instead, inline browse.py into a header using a shell script. (Making this work required fixing multiple bugs in ninja...)