Remove some code comments from previous commit.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@71 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
roktas 2006-11-03 05:09:30 +00:00
parent 2066ec5d02
commit 2d7043ba59

View file

@ -8,7 +8,9 @@ CABAL := Pandoc.cabal
NAME := $(shell sed -ne 's/^[Nn]ame:[[:space:]]*//p' $(CABAL).in)
VERSION := $(shell sed -ne 's/^[Vv]ersion:[[:space:]]*//p' $(CABAL).in)
EXECS := $(shell sed -ne 's/^[Ee]xecutable:[[:space:]]*//p' $(CABAL).in)
MAIN := $(word 1, $(EXECS)) # first entry in stanza is the main executable
# First entry in Cabal's executable stanza is the main executable.
MAIN := $(word 1, $(EXECS))
#-------------------------------------------------------------------------------
# Install targets
@ -35,7 +37,7 @@ CONFIGURE := configure
#-------------------------------------------------------------------------------
# Installation paths
#-------------------------------------------------------------------------------
THIS := $(shell echo $(NAME) | tr A-Z a-z) # package name
THIS := $(shell echo $(NAME) | tr A-Z a-z)
DESTPATH := $(DESTDIR)$(PREFIX)
BINPATH := $(DESTPATH)/bin
DATAPATH := $(DESTPATH)/share