I am trying to build a GNUstep bundle that has resources only (no classes). This fails with the following message:
bash-2.03$ make install
Making all for bundle FBEnterpriseResources...
gcc -shared -mimpure-text \
-o FBEnterpriseResources.bundle/sparc/solaris2.8/gnu-gnu-gnu/FBEnterpriseResources \
\
-L/opt/FrontBase/lib/ -L/home/ahoesch/GNUstep/Libraries/sparc/solaris2.8/gnu-gnu-gnu -L/home/ahoesch/GNUstep/Libraries/sparc/solaris2.8 -L/opt/GNUstep/Local/Libraries/sparc/solaris2.8/gnu-gnu-gnu -L/opt/GNUstep/Local/Libraries/sparc/solaris2.8 -L/opt/GNUstep/Network/Libraries/sparc/solaris2.8/gnu-gnu-gnu -L/opt/GNUstep/Network/Libraries/sparc/solaris2.8 -L/opt/GNUstep/System/Libraries/sparc/solaris2.8/gnu-gnu-gnu -L/opt/GNUstep/System/Libraries/sparc/solaris2.8
gcc: No input files
make[1]: *** [FBEnterpriseResources.bundle/sparc/solaris2.8/gnu-gnu-gnu/FBEnterpriseResources] Error 1
make: *** [FBEnterpriseResources.all.bundle.variables] Error 2
My GNUmakefile looks as follows
include $(GNUSTEP_MAKEFILES)/common.make
BUNDLE_NAME = FBEnterpriseResources
FBEnterpriseResources_HEADER_FILES_INSTALL_DIR = FBEnterpriseResources
FBEnterpriseResources_LOCALIZED_RESOURCE_FILES = Localizable.strings
FBEnterpriseResources_LANGUAGES = English
include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/bundle.make
I suppose this is a bug in the make package. How can this be fixed?