Skip to content
Snippets Groups Projects
Commit 078e5b49 authored by Albert Gräf's avatar Albert Gräf Committed by Albert Gräf
Browse files

Use just the real application name (without version/architecture suffix) as PD_APP_NAME on OSX.

parent 042ea93d
No related branches found
No related tags found
No related merge requests found
......@@ -217,7 +217,8 @@ PD_VERSION := $(PD_L2ORK_VERSION)-$(PD_TEST_VERSION)
VERSION_DATE := $(shell date +%Y%m%d)
PACKAGE_NAME = Pd-l2ork-$(PD_VERSION)-`uname -m`
APPLICATION_NAME = Pd-l2ork
PACKAGE_NAME = $(APPLICATION_NAME)-$(PD_VERSION)-`uname -m`
#==============================================================================#
......
......@@ -5,7 +5,10 @@ export MACOSX_DEPLOYMENT_TARGET = 10.4
CWD := $(shell pwd)
BUILD_BASE = $(CWD)/build
PD_APP_NAME = $(PACKAGE_NAME)
# some folks may prefer to have the version and architecture in the app name
#PD_APP_NAME = $(PACKAGE_NAME)
# but we want just the real name of the application
PD_APP_NAME = $(APPLICATION_NAME)
PD_SHORT_NAME = "Purr-Data"
PD_APP_CONTENTS = $(BUILD_BASE)/$(PD_APP_NAME).app/Contents
DESTDIR = $(PD_APP_CONTENTS)/Resources/app.nw
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment