summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoah <noah@656d521f-e311-0410-88e0-e7920216d269>2002-10-22 22:41:25 +0000
committernoah <noah@656d521f-e311-0410-88e0-e7920216d269>2002-10-22 22:41:25 +0000
commit804c15b973b30b5faf0572e0a825cdf5a926ea35 (patch)
treee4504b26bea1d9a184a95a33395ceb24dd267e3c
parentd68c279f461afb580e24f2bdc6ecd148a8e324b3 (diff)
downloadpexpect-804c15b973b30b5faf0572e0a825cdf5a926ea35.tar.gz
Modified Makefile to be for GNU Make instead of BSD Make. Sigh...
git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@116 656d521f-e311-0410-88e0-e7920216d269
-rw-r--r--pexpect/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/pexpect/Makefile b/pexpect/Makefile
index 4ff6ca3..354b591 100644
--- a/pexpect/Makefile
+++ b/pexpect/Makefile
@@ -3,7 +3,10 @@ SHELL = /bin/sh
VERSION= 0.94
#DOCGENERATOR= happydoc
DOCGENERATOR= pydoc -w
-MANIFEST_LINES != cat MANIFEST
+# This is for GNU Make. This does not work on BSD Make.
+MANIFEST_LINES := $(shell cat MANIFEST)
+# This is for BSD Make. This does not work on GNU Make.
+#MANIFEST_LINES != cat MANIFEST
all: dist examples doc