Skip to content

Commit

Permalink
Imake.rules: fix error in Makefile generation
Browse files Browse the repository at this point in the history
"make Makefile" would result in "/bin/sh: 2: @mv: not found"
  • Loading branch information
uli42 committed May 11, 2024
1 parent a4dc3ed commit 305d919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nx-X11/config/cf/Imake.rules
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ CplusplusProgramTargetHelper(program,SRCS10,OBJS10,DEPLIBS10,locallib,syslib)

#ifndef RMoveToBakFile
#define RMoveToBakFile(file) -@if [ -f file ]; then test -n "${VERBOSE}" && set -x; \ @@\
RemoveFile(file.bak); @$(MV) file file.bak; \ @@\
RemoveFile(file.bak); $(MV) file file.bak; \ @@\
else exit 0; fi
#endif /* RMoveToBakFile */

Expand Down

0 comments on commit 305d919

Please sign in to comment.