diff options
author | grant <grant@pkgsrc.org> | 2004-04-04 02:01:28 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-04-04 02:01:28 +0000 |
commit | 0a12b7b9cbcb1a1e81292e1ce3c22fd45008b8a3 (patch) | |
tree | 5b67a20581903eb5bab266806b1e1d3670921d4d /bootstrap | |
parent | 54e0e3b743e42ffbad6a4ed00742896565ce5049 (diff) | |
download | pkgsrc-0a12b7b9cbcb1a1e81292e1ce3c22fd45008b8a3.tar.gz |
no space between #! and /bin/sh. whether this actually makes any
difference on some platforms is an exercise left to the reader, but
the current pkgsrc convention is #!<program> without the space, so
this is if nothing else, a consistency fix.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/mkbinarykit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/mkbinarykit b/bootstrap/mkbinarykit index badc64938ae..ab9c8eefd2f 100755 --- a/bootstrap/mkbinarykit +++ b/bootstrap/mkbinarykit @@ -1,6 +1,6 @@ -#! /bin/sh +#!/bin/sh -# $NetBSD: mkbinarykit,v 1.4 2004/04/04 01:59:52 grant Exp $ +# $NetBSD: mkbinarykit,v 1.5 2004/04/04 02:01:28 grant Exp $ # # Make a binary bootstrap kit and place it in targetdir (or current # working directory if not specified). The mk.conf.example file is |