this is a bourne script, bash is not needed

Don't use /bin/bash ! Many systems do not have bash there (they
might have it at /usr/local/bin/bash, for example). Don't specify
bash unless you specifically need bash features -- many systems
do not have bash installed by default.
This commit is contained in:
bentley
2010-01-14 22:16:59 -07:00
parent b69cd0c345
commit bb85782faa
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
localversion = $(shell bash scripts/localversion.sh)
localversion = $(shell sh scripts/localversion.sh)
cflags = -Wall -Iinclude -Iinclude/asm/gameboy -DLOCALVERSION=\"$(localversion)\" -g -std=c99 -D_POSIX_C_SOURCE=200112L

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#!/bin/sh
#
# Use git to figure out which version we are using.