"Stephen J. Turnbull" <turnbull(a)sk.tsukuba.ac.jp> writes:
>>>>> "SY" == Steve Youngs
<youngs(a)xemacs.org> writes:
>> This is a sh-ism-in-Makefile syntax bug.
SY> Yes, but it wasn't the fault of the Makefile.
It _was_ the fault of the Makefile. In a GNU Makefile
ifeq(,'')
_fails_. The Makefile attempted to check for empty $(MULE_PACKAGES),
but it did so incorrectly. My change (edited for clarity)
-ifneq ($(MULE_PACKAGES),'')
+ifneq ('$(MULE_PACKAGES)','')
is _necessary_,
Fair enough. Would you like to check through the other Package
Makefiles (as well as *.rules) for similar problems and submit a patch
accordingly?
--
|---<Steve Youngs>---------------<GnuPG KeyID: 9E7E2820>---|
| XEmacs - It's not just an editor. |
| It's a way of life. |
|------------------------------------<youngs(a)xemacs.org>---|