discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Include *Info.plist in bundle.make


From: Stefan Urbanek
Subject: Include *Info.plist in bundle.make
Date: Thu, 01 Nov 2001 15:55:53 +0100

Hi,

In bundle.make there is around line 251:

# GNUstep bundles
$(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist: $(BUNDLE_DIR_NAME)/Resources
        @(echo "{"; echo '  NOTE = "Automatically generated, do not edit!";'; \
          echo "  NSExecutable = 
\"$(INTERNAL_bundle_NAME)${BUNDLE_OBJ_EXT}\";"; \
          if [ "$(MAIN_MODEL_FILE)" = "" ]; then \
            echo "  NSMainNibFile = \"\";"; \
          else \
            echo "  NSMainNibFile = \"$(subst .gmodel,,$(subst .gorm,,$(subst
.nib,,$(MAIN_MODEL_FILE))))\";"; \
          fi; \
          echo "  NSPrincipalClass = \"$(PRINCIPAL_CLASS)\";"; \
          echo "}") >$@


This has to be added to include *Info.plist (same as in application.make):

          @if [ -r "$(INTERNAL_bundle_NAME)Info.plist" ]; then \
            plmerge $@ $(INTERNAL_bundle_NAME)Info.plist; \
          fi


Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]