mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Fix a very bizarre issue we were seeing with our buildbot when using a DESTDIR that
wasn't an absolute path (such as DESTDIR=~/asterisk-1.4). Apparently what was happening, was that some of the targets were being expanded to the full path, so $@ ended up being /root/asterisk-1.4/[...]/ rather than ~/asterisk-1.4/[...]/ It appears that this may be a new "feature" in GNU make. (*cough* http://en.wikipedia.org/wiki/Principle_of_least_surprise *cough*) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@104132 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -16,8 +16,8 @@
|
||||
-include $(ASTTOPDIR)/menuselect.makeopts $(ASTTOPDIR)/makeopts
|
||||
|
||||
PWD:=$(shell pwd)
|
||||
SOUNDS_DIR:=$(DESTDIR)$(ASTDATADIR)/sounds
|
||||
MOH_DIR:=$(DESTDIR)$(ASTDATADIR)/moh
|
||||
SOUNDS_DIR:=$(abspath $(DESTDIR)$(ASTDATADIR)/sounds)
|
||||
MOH_DIR:=$(abspath $(DESTDIR)$(ASTDATADIR)/moh)
|
||||
CORE_SOUNDS_VERSION:=1.4.8
|
||||
EXTRA_SOUNDS_VERSION:=1.4.7
|
||||
SOUNDS_URL:=http://downloads.digium.com/pub/telephony/sounds/releases
|
||||
|
Reference in New Issue
Block a user