diff options
author | Mike Fulbright <msf@redhat.com> | 1999-11-12 21:35:25 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 1999-11-12 21:35:25 +0000 |
commit | 288529a31576468d7d27ca1e9aec8a63ac973510 (patch) | |
tree | aab56db9f4f406e2a7a6b321bed746a7ed09c9fc /rpmmodule | |
parent | 3230f88eef53294ac71019f620c998e98b62af77 (diff) | |
download | anaconda-288529a31576468d7d27ca1e9aec8a63ac973510.tar.gz anaconda-288529a31576468d7d27ca1e9aec8a63ac973510.tar.xz anaconda-288529a31576468d7d27ca1e9aec8a63ac973510.zip |
Several changes to build structure - contact Dr Mike if you hit problems.
I've made most of the Makefile's use the Makefile.inc include in the
root of the anaconda src tree to get the python path, instead of having
it defined in many different places.
In the top level Makefile I added a install target called install-unconfig.
This target installs the anaconda script and associated support files
with the intention of being able to run anaconda in unconfig mode after
a successful install. This mode is automatically selected if
the executed script is called 'anaconda-unconfig', or the '-U' command
line parameter is used.
Diffstat (limited to 'rpmmodule')
-rw-r--r-- | rpmmodule/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rpmmodule/Makefile b/rpmmodule/Makefile index 78172e14a..b1125ac6d 100644 --- a/rpmmodule/Makefile +++ b/rpmmodule/Makefile @@ -3,7 +3,9 @@ # # $Id$ -PYTHON = $(DESTDIR)/usr/lib/python1.5/site-packages +include ../Makefile.inc + +PYTHON = $(DESTDIR)/$(PYTHONLIBDIR) CC = gcc |