diff --git a/Makefile b/Makefile index 329731e..a807341 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,6 @@ top_dir = . include $(top_dir)/Makefile.common -include $(TOP)/config VERSION = $(CFGversion) @@ -164,7 +163,7 @@ unpack: rm -rf $(top_dir)/$(TMP_PKG) mkdir $(top_dir)/$(TMP_PKG) pushd $(top_dir)/$(TMP_PKG); \ - for f in `cat $(top_dir)/../REQ`; do \ + for f in `cat $(top_dir)/../req`; do \ rpm2cpio $(CFGrepo)/$$f-*.rpm | cpio -id; \ done diff --git a/Makefile.common b/Makefile.common index 884b86f..be67df0 100644 --- a/Makefile.common +++ b/Makefile.common @@ -14,6 +14,8 @@ # #***************************************************************************** +include $(DISTRCONF) + ARCH := $(patsubst i%86,i386,$(shell uname -m)) ARCH := $(patsubst sparc%,sparc,$(ARCH))