On 2/28/13 1:29 PM, Kenneth Stailey wrote:
Makefile:67: *** unterminated variable reference.  Stop.

Even in comments you must terminate variable references.

Fix:

]$ git diff
diff --git a/Makefile b/Makefile
index d2e5e59..3a0f190 100644
--- a/Makefile
+++ b/Makefile
@@ -71,7 +71,7 @@ zipfile:
        #        to cd into $(RPM_TMPDIR)
        cp RHEL6/output/ssg-* $(RPM_TOPDIR)/ZIP/
        cp JBossEAP5/eap5-* $(RPM_TOPDIR)/ZIP/
-       # Originally attempted to `cd $(RPM_TOPDIR/ZIP` and
+       # Originally attempted to `cd $(RPM_TOPDIR)/ZIP` and
        # make the zip from there, however it still placed it
        # at working directory. Should look into this sometime
        #

How odd, `make zipfile` works on my end. But you're totally right. Please push (or indicate you need someone to do so for you).