diff options
author | Rob Austein <sra@hactrn.net> | 2012-09-30 16:19:41 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-09-30 16:19:41 +0000 |
commit | 47e8fee91bef404c1528bc6e4c580f08f4d73c69 (patch) | |
tree | 10ff02842f6796ffb8be940cb6ed39c44c7a1ec6 /rtr-origin | |
parent | 8b2dc576c29cc8d0f3dfc18f0950019bac812a49 (diff) |
Don't whack installation directories if they already exist. Maybe
there's some clever way to autoconf this so users can control whether
they want their directories whacked or not, but for now we need to
stop doing this because it messes up /usr/local on MacOSX laptops.
See #288.
svn path=/branches/tk274/; revision=4745
Diffstat (limited to 'rtr-origin')
-rw-r--r-- | rtr-origin/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtr-origin/Makefile.in b/rtr-origin/Makefile.in index 0f29c797..8a50e528 100644 --- a/rtr-origin/Makefile.in +++ b/rtr-origin/Makefile.in @@ -28,7 +28,7 @@ clean: rm -f ${BIN} install: all - ${INSTALL} -d ${DESTDIR}${bindir} + if test -d ${DESTDIR}${bindir} ; then :; else ${INSTALL} -d ${DESTDIR}${bindir}; fi ${INSTALL} ${BIN} ${DESTDIR}${bindir}/${BIN} deinstall uninstall: |