diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-10-15 21:55:54 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-10-15 21:55:54 +0200 |
commit | 0f3eacf74c634a3c40aa2f4abefe4d0e7d69f1bf (patch) | |
tree | 3817cd8235be380aedbca1298c08fdef1f1ee6d2 /build-aux | |
parent | 1ebe6a63686b341b55848b0dc0532e7b0d665c15 (diff) |
Fix `gitlog-to-changelog' on NixOS.
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/gitlog-to-changelog | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build-aux/gitlog-to-changelog b/build-aux/gitlog-to-changelog index 1cc53eb7c..270b8cf56 100755 --- a/build-aux/gitlog-to-changelog +++ b/build-aux/gitlog-to-changelog @@ -1,4 +1,7 @@ -#!/usr/bin/perl +#!/bin/sh +# Accommodate systems where /usr/bin/perl is not the right path. +exec perl -x "$0" "$@" +#!perl # Convert git log output to ChangeLog format. my $VERSION = '2009-06-04 08:53'; # UTC |