]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Since all shells aren't as awesome as bash, we have to fail if somebody tries to...
authorJason Parker <jparker@digium.com>
Tue, 26 Feb 2008 18:09:13 +0000 (18:09 +0000)
committerJason Parker <jparker@digium.com>
Tue, 26 Feb 2008 18:09:13 +0000 (18:09 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@104139 65c4cc65-6c06-0410-ace0-fbb531ad65f3

Makefile

index 534367237223285ad8013f52d7e800b852bd43df..c7f16615010d7e950b01d5a68b697f355bdebf7f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -498,7 +498,14 @@ oldmodcheck:
                echo " WARNING WARNING WARNING" ;\
        fi
 
-install: datafiles bininstall $(SUBDIRS_INSTALL)
+badshell:
+ifneq ($(findstring ~,$(DESTDIR)),)
+       @echo "Your shell doesn't do ~ expansion when expected (specifically, when doing \"make install DESTDIR=~/path\")."
+       @echo "Try replacing ~ with \$$HOME, as in \"make install DESTDIR=\$$HOME/path\"."
+       @exit 1
+endif
+
+install: badshell datafiles bininstall $(SUBDIRS_INSTALL)
        @if [ -x /usr/sbin/asterisk-post-install ]; then \
                /usr/sbin/asterisk-post-install $(DESTDIR) . ; \
        fi