Skip to content

Commit

Permalink
fix Makefile.template for the case where no git repository is availab…
Browse files Browse the repository at this point in the history
…le (aka in release tarballs)
  • Loading branch information
Soeren Sonnenburg committed Dec 12, 2011
1 parent 8c1f1f2 commit 35ba6f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.template
Expand Up @@ -86,7 +86,7 @@ POSTLINKFLAGS += $(POSTLINKFLAGS_TEMPLATE)
PRELINKFLAGS += $(PRELINKFLAGS_TEMPLATE)

# SRC/OBJFILES lie all in the subdir of SRCDIR
GITHEAD = ../../.git/HEAD
GITHEAD = $(shell ls ../../.git/HEAD 2>/dev/null)
HEADERFILES = $(shell find $(SRCDIR) -name "*.$(EXT_SRC_HEADER)" )
SRCFILES = $(shell find $(SRCDIR) -name "*.$(EXT_SRC_C)" -o -name "*.$(EXT_SRC_CPP)")
CPPTMPFILES = $(shell find $(SRCDIR) -name "*.$(EXT_CPP_TMP)")
Expand Down

0 comments on commit 35ba6f1

Please sign in to comment.