summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-08-19 18:51:29 +0000
committerErik Troan <ewt@redhat.com>1999-08-19 18:51:29 +0000
commit9db9df13a1293ca028c00c3fd3e987cdcbacb060 (patch)
tree706115e78b0dc27a42959c36fe8aeb096e9b6d80 /Makefile
parent6b1f8f8f6903197d242d0749039e7c6def22c441 (diff)
downloadanaconda-9db9df13a1293ca028c00c3fd3e987cdcbacb060.tar.gz
anaconda-9db9df13a1293ca028c00c3fd3e987cdcbacb060.tar.xz
anaconda-9db9df13a1293ca028c00c3fd3e987cdcbacb060.zip
pass full path as DESTDIR
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 83ca5e150..c9b8a2b5a 100644
--- a/Makefile
+++ b/Makefile
@@ -30,4 +30,4 @@ install: all
cp -a *.py $(DESTDIR)/usr/lib/python1.5/site-packages
cp -a iw/*.py $(DESTDIR)/usr/bin/iw
cp -a *.py *.so $(DESTDIR)/usr/lib/python1.5/site-packages
- for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) DESTDIR=../$(DESTDIR) -C $$d install; done
+ for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) DESTDIR=`cd $(DESTDIR); pwd` -C $$d install; done