install: treat target as file by default instead of dir

When using 'install foo bar', bar should be treated as a file copy of
foo, not a directory to be created and into which install foo.
This commit is contained in:
Quentin Rameau
2016-02-18 11:35:22 +01:00
committed by sin
parent bb83eade39
commit bd88854850
2 changed files with 4 additions and 6 deletions

View File

@@ -247,8 +247,6 @@ main(int argc, char *argv[])
make_dirs(argv[argc - 1], 1);
*p = '/';
}
} else {
make_dirs(argv[argc - 1], 1);
}
}
enmasse(argc, argv, install);