Fossil

View Ticket
Login

View Ticket

2012-08-08
13:04 Fixed ticket [6e23fe1101]: "make install" dosn't create the target directory plus 1 other change ... (artifact: 3e5ad04c95 user: drh)
13:04
Changes "make install" so that it makes sure that the installation directory actually exists. Ticket [6e23fe11013961]. ... (check-in: 426e8edc30 user: drh tags: trunk)
12:28 New ticket [6e23fe1101] "make install" dosn't create the target directory. ... (artifact: bc7cb05eaa user: rmax)

Ticket Hash: 6e23fe110139615d5a6966506e5c4fd8129e1a62
Title: "make install" dosn't create the target directory
Status: Fixed Type: Code_Defect
Severity: Minor Priority:
Subsystem: Resolution: Fixed
Last Modified: 2012-08-08 13:04:17
Version Found In: 1.23
Description:
--- src/main.mk
+++ src/main.mk
@@ -269,6 +269,7 @@
 all:   $(OBJDIR) $(APPNAME)
 
 install:       $(APPNAME)
+       mkdir -p $(INSTALLDIR)
        mv $(APPNAME) $(INSTALLDIR)
 
 $(OBJDIR):