]> Zhao Yanbai Git Server - minix.git/commitdiff
Revert "bin/mv: Temporary fix"
authorLionel Sambuc <lionel@minix3.org>
Mon, 28 Jul 2014 11:53:23 +0000 (13:53 +0200)
committerLionel Sambuc <lionel@minix3.org>
Mon, 28 Jul 2014 15:06:36 +0000 (17:06 +0200)
This is no longer required as /bin/cp has been imported.

This reverts commit e3257d3ff741480d640cefe2507a77e65322f40d.

bin/mv/mv.c

index 0899bd4ceb31c852d5784aabd9c619e0bde96e26..ebdf9d43cd2cc4dc7d5a294033caddd441a99afc 100644 (file)
@@ -347,12 +347,7 @@ copy(char *from, char *to)
        int status;
 
        if ((pid = vfork()) == 0) {
-#if defined(__minix)
-               /* LSC: This is required as long as we have not imported cp */
-               execl(_PATH_CP, "cp", vflg ?  "-Rpv" :  "-Rp", "--", from, to, NULL);
-#else
                execl(_PATH_CP, "mv", vflg ? "-PRpv" : "-PRp", "--", from, to, NULL);
-#endif /* defined(__minix) */
                warn("%s", _PATH_CP);
                _exit(1);
        }