make install (2.0.2) tries useless mkdir
"Dr. Uwe Girlich" <[email protected]>
| Newsgroups | gmane.linux.ngpt.devel |
|---|---|
| Message-ID | <[email protected]> |
Hello list! The line $(SHTOOL) mkdir -f -p -m 755 $(prefix)/../lib in Makefile.in tries to create an unused directory in a place where I don't have permissions to create a directory anyway. The attached patch library-install.diff corrects the problem by removing the offending line from Makefile.in. Bye, Uwe -- Dr. Uwe Girlich email: [email protected] Philosys Software GmbH www: www.philosys.de Edisonstrasse 6 phone: +49 89 321407-44 D-85716 Unterschleissheim fax: +49 89 321407-12
library-install.diff
(text/plain, 480 B)
diff -u -r --exclude='*.o' ngpt-2.0.1-orig/Makefile.in ngpt-2.0.1/Makefile.in --- ngpt-2.0.1-orig/Makefile.in Fri Jun 21 18:55:18 2002 +++ ngpt-2.0.1/Makefile.in Tue Sep 3 08:48:17 2002 @@ -227,7 +227,6 @@ @$(MAKE) $(MFLAGS) what-next install-dirs: $(SHTOOL) mkdir -f -p -m 755 $(prefix) - $(SHTOOL) mkdir -f -p -m 755 $(prefix)/../lib $(SHTOOL) mkdir -f -p -m 755 $(bindir) $(SHTOOL) mkdir -f -p -m 755 $(includedir) $(SHTOOL) mkdir -f -p -m 755 $(includedir)/bits