Skip to content

Commit 19055b7

Browse files
committed
Add mention with might need to use cp -R someday for portability.
1 parent 34cb0f7 commit 19055b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/commands/dbcommands.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $PostgreSQL: pgsql/src/backend/commands/dbcommands.c,v 1.128 2003/11/29 19:51:47 pgsql Exp $
12+
* $PostgreSQL: pgsql/src/backend/commands/dbcommands.c,v 1.129 2003/12/15 22:56:44 momjian Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -362,6 +362,7 @@ createdb(const CreatedbStmt *stmt)
362362
* rewrite to do it for ourselves.
363363
*/
364364
#ifndef WIN32
365+
/* We might need to use cp -R one day for portability */
365366
snprintf(buf, sizeof(buf), "cp -r '%s' '%s'", src_loc, target_dir);
366367
if (system(buf) != 0)
367368
{

0 commit comments

Comments
 (0)